2018-12-31 04:40:47 +01:00
|
|
|
{ stdenv, fetchurl, libX11, xorgproto, libXt, libICE, libSM, libXext }:
|
2011-03-29 12:32:49 +02:00
|
|
|
|
2015-08-27 16:44:23 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "xdaliclock";
|
2019-01-02 02:29:45 +01:00
|
|
|
version = "2.44";
|
2015-08-27 16:44:23 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url="https://www.jwz.org/xdaliclock/${pname}-${version}.tar.gz";
|
2019-01-02 02:29:45 +01:00
|
|
|
sha256 = "1gsgnsm6ql0mcg9zpdkhws3g23r3a92bc3rpg4qbgbmd02nvj3c0";
|
2011-03-29 12:32:49 +02:00
|
|
|
};
|
|
|
|
|
2017-12-04 18:31:02 +01: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 12:32:49 +02:00
|
|
|
|
2018-12-31 04:40:47 +01:00
|
|
|
buildInputs = [ libX11 xorgproto libXt libICE libSM libXext ];
|
2011-03-29 12:32:49 +02:00
|
|
|
|
2015-08-27 16:44:23 +02:00
|
|
|
preInstall = ''
|
|
|
|
mkdir -vp $out/bin $out/share/man/man1
|
|
|
|
'';
|
2014-11-06 01:44:33 +01:00
|
|
|
|
2015-08-27 16:44:23 +02:00
|
|
|
meta = with stdenv.lib; {
|
2011-03-29 12:32:49 +02:00
|
|
|
description = "A clock application that morphs digits when they are changed";
|
2015-08-27 16:44:23 +02: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 12:32:49 +02:00
|
|
|
};
|
2015-08-27 16:44:23 +02:00
|
|
|
}
|