2015-08-27 15:44:23 +01:00
|
|
|
{ stdenv, fetchurl, libX11, xproto, libXt, libICE, libSM, libXext }:
|
2011-03-29 11:32:49 +01:00
|
|
|
|
2015-08-27 15:44:23 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "xdaliclock-${version}";
|
2019-01-02 01:29:45 +00:00
|
|
|
version = "2.44";
|
2015-08-27 15:44:23 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url="https://www.jwz.org/xdaliclock/${name}.tar.gz";
|
2019-01-02 01:29:45 +00:00
|
|
|
sha256 = "1gsgnsm6ql0mcg9zpdkhws3g23r3a92bc3rpg4qbgbmd02nvj3c0";
|
2011-03-29 11:32:49 +01:00
|
|
|
};
|
|
|
|
|
2017-12-04 17:31:02 +00:00
|
|
|
# Note: don't change this to set sourceRoot, or updateAutotoolsGnuConfigScriptsHook
|
|
|
|
# on aarch64 doesn't find the files to patch and the aarch64 build fails!
|
|
|
|
preConfigure = "cd X11";
|
2011-03-29 11:32:49 +01:00
|
|
|
|
2015-08-27 15:44:23 +01:00
|
|
|
buildInputs = [ libX11 xproto libXt libICE libSM libXext ];
|
2011-03-29 11:32:49 +01:00
|
|
|
|
2015-08-27 15:44:23 +01:00
|
|
|
preInstall = ''
|
|
|
|
mkdir -vp $out/bin $out/share/man/man1
|
|
|
|
'';
|
2014-11-06 00:44:33 +00:00
|
|
|
|
2015-08-27 15:44:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-03-29 11:32:49 +01:00
|
|
|
description = "A clock application that morphs digits when they are changed";
|
2015-08-27 15:44:23 +01:00
|
|
|
maintainers = with maintainers; [ raskin rycee ];
|
|
|
|
platforms = with platforms; linux ++ freebsd;
|
|
|
|
license = licenses.free; #TODO BSD on Gentoo, looks like MIT
|
|
|
|
downloadPage = http://www.jwz.org/xdaliclock/;
|
2011-03-29 11:32:49 +01:00
|
|
|
};
|
2015-08-27 15:44:23 +01:00
|
|
|
}
|