abduco: update from 0.2 to 0.3

This commit is contained in:
Pascal Wittmann 2015-03-02 16:23:30 +01:00
parent 0ed8f8cbdf
commit 95800b2991

View file

@ -3,25 +3,24 @@
with stdenv.lib;
stdenv.mkDerivation rec {
name = "abduco-0.2";
name = "abduco-0.3";
meta = {
homepage = http://brain-dump.org/projects/abduco;
license = licenses.isc;
description = "Allows programs to be run independently from its controlling terminal";
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
};
src = fetchurl {
url = "http://www.brain-dump.org/projects/abduco/${name}.tar.gz";
sha256 = "04hrlxb02h2j8vxjnj263slyzxgkf7sncxfm0iwds5097f85mdy8";
sha256 = "1m4hafwvpnzz53n15757zrsx3xqv51gpnf3mnxqkzyr5mswz0jwk";
};
configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";
buildInputs = [];
installPhase = ''
make PREFIX=$out install
'';