Skip to content

Commit

Permalink
Merge pull request #53588 from spacekookie/void
Browse files Browse the repository at this point in the history
void: init at 1.1.5
  • Loading branch information
markuskowa committed Jan 8, 2019
2 parents 07a7a35 + 66fe6f1 commit bfd9dd7
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/tools/misc/void/default.nix
@@ -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
doCheck = false;

cargoSha256 = "1rq947s82icl7gdkjynjwz426bpmd96dip2dv2y7p8rg7yz29x0m";

meta = with stdenv.lib; {
description = "Terminal-based personal organizer";
homepage = https://github.com/spacejam/void;
license = licenses.gpl3;
maintainers = with maintainers; [ spacekookie ];
platforms = platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -6016,6 +6016,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 { };
Expand Down

0 comments on commit bfd9dd7

Please sign in to comment.