nixpkgs/pkgs/applications/misc/catclock/default.nix

33 lines
786 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, xlibsWrapper, motif }:
2016-07-27 19:31:04 +02:00
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
pname = "catclock";
version = "unstable-2015-10-04";
2016-07-27 19:31:04 +02:00
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 lib; {
homepage = "http://codefromabove.com/2014/05/catclock/";
2016-07-27 19:31:04 +02:00
license = with licenses; mit;
maintainers = with maintainers; [ ramkromberg ];
2016-07-31 10:41:20 +02:00
platforms = with platforms; linux ++ darwin;
2016-07-27 19:31:04 +02:00
};
}