about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/catclock/default.nix
blob: 9c6b1812683a005046445c4bb276b7a4e13def45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib, stdenv, fetchFromGitHub, xlibsWrapper, motif }:

stdenv.mkDerivation {
  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 lib; {
    homepage = "http://codefromabove.com/2014/05/catclock/";
    license = with licenses; mit;
    maintainers = with maintainers; [ ramkromberg ];
    platforms = with platforms; linux ++ darwin;
  };
}