void: init at 1.1.5
This commit is contained in:
parent
75b4b5fc99
commit
6a6cd025fc
26
pkgs/tools/misc/void/default.nix
Normal file
26
pkgs/tools/misc/void/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
name = "void-${version}";
|
||||
version = "1.1.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "spacejam";
|
||||
repo = "void";
|
||||
rev = "${version}";
|
||||
sha256 = "08vazw4rszqscjz988k89z28skyj3grm81bm5iwknxxagmrb20fz";
|
||||
};
|
||||
|
||||
# The tests are long-running and not that useful
|
||||
checkPhase = null;
|
||||
|
||||
cargoSha256 = "1rq947s82icl7gdkjynjwz426bpmd96dip2dv2y7p8rg7yz29x0m";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Terminal-based personal organizer";
|
||||
homepage = https://github.com/spacejam/void;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ spacekookie ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -6012,6 +6012,8 @@ in
|
||||
|
||||
vobsub2srt = callPackage ../tools/cd-dvd/vobsub2srt { };
|
||||
|
||||
void = callPackage ../tools/misc/void { };
|
||||
|
||||
volume_key = callPackage ../development/libraries/volume-key { };
|
||||
|
||||
vorbisgain = callPackage ../tools/misc/vorbisgain { };
|
||||
|
Loading…
Reference in New Issue
Block a user