forked from mirrors/nixpkgs
snooze: init at 0.4
This commit is contained in:
parent
0fa8211683
commit
35943384ea
20
pkgs/tools/system/snooze/default.nix
Normal file
20
pkgs/tools/system/snooze/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "snooze";
|
||||
version = "0.4";
|
||||
src = fetchFromGitHub {
|
||||
owner = "leahneukirchen";
|
||||
repo = "snooze";
|
||||
rev = "v${version}";
|
||||
sha256 = "0a114brvvjf6vl7grviv0gd6gmikr447m8kq1wilp4yj51sfyxa9";
|
||||
};
|
||||
makeFlags = [ "DESTDIR=$(out)" "PREFIX=/" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description =
|
||||
"Tool for waiting until a particular time and then running a command.";
|
||||
maintainers = with maintainers; [ kaction ];
|
||||
license = licenses.cc0;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -2899,6 +2899,8 @@ in
|
|||
|
||||
cron = callPackage ../tools/system/cron { };
|
||||
|
||||
snooze = callPackage ../tools/system/snooze { };
|
||||
|
||||
cudaPackages = recurseIntoAttrs (callPackage ../development/compilers/cudatoolkit {});
|
||||
inherit (cudaPackages)
|
||||
cudatoolkit_6
|
||||
|
|
Loading…
Reference in a new issue