mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 22:20:51 +00:00
Merge pull request #17334 from RamKromberg/init/catclock
catclock: init at 2015-10-04
This commit is contained in:
commit
bddec681fb
31
pkgs/applications/misc/catclock/default.nix
Normal file
31
pkgs/applications/misc/catclock/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ stdenv, fetchFromGitHub, xlibsWrapper, motif }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "catclock-2015-10-04";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "BarkyTheDog";
|
||||
repo = "catclock";
|
||||
rev = "d20b8825b38477a144e8a2a4bbd4779adb3620ac";
|
||||
sha256 = "0fiv9rj8p8mifv24cxljdrrmh357q70zmzdci9bpbxnhs1gdpr63";
|
||||
};
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/bin
|
||||
mkdir -p $out/share/man/man1
|
||||
cp xclock.man $out/share/man/man1/xclock.1
|
||||
'';
|
||||
|
||||
makeFlags = [
|
||||
"DESTINATION=$(out)/bin/"
|
||||
];
|
||||
|
||||
buildInputs = [ xlibsWrapper motif ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://codefromabove.com/2014/05/catclock/;
|
||||
license = with licenses; mit;
|
||||
maintainers = with maintainers; [ ramkromberg ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
}
|
|
@ -672,6 +672,8 @@ in
|
|||
|
||||
catdoc = callPackage ../tools/text/catdoc { };
|
||||
|
||||
catclock = callPackage ../applications/misc/catclock { };
|
||||
|
||||
cdemu-daemon = callPackage ../misc/emulators/cdemu/daemon.nix { };
|
||||
|
||||
cdemu-client = callPackage ../misc/emulators/cdemu/client.nix { };
|
||||
|
|
Loading…
Reference in a new issue