3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #71310 from marsam/init-snore

snore: init at 0.1
This commit is contained in:
Mario Rodas 2019-10-18 07:47:44 -05:00 committed by GitHub
commit 8124961b1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
version = "0.1";
pname = "snore";
src = fetchFromGitHub {
owner = "clamiax";
repo = pname;
rev = version;
sha256 = "1ic1qy6ybnjlkz5rb1hpvq6dcdmxw5xcx34qcadrsfdjizxcv8pp";
};
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with stdenv.lib; {
description = "sleep with feedback";
homepage = "https://github.com/clamiax/snore";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
platforms = platforms.unix;
};
}

View file

@ -10160,6 +10160,8 @@ in
snakemake = callPackage ../applications/science/misc/snakemake { python = python3Packages; };
snore = callPackage ../tools/misc/snore { };
snowman = qt5.callPackage ../development/tools/analysis/snowman { };
sparse = callPackage ../development/tools/analysis/sparse { };