mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
snore: init at 0.1
This commit is contained in:
parent
5617886b16
commit
8f4e51b0c6
2 changed files with 25 additions and 0 deletions
23
pkgs/tools/misc/snore/default.nix
Normal file
23
pkgs/tools/misc/snore/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue