nixpkgs/pkgs/tools/misc/abduco/default.nix

29 lines
781 B
Nix
Raw Normal View History

2014-07-23 12:49:43 +00:00
{ stdenv, fetchurl, writeText, conf? null}:
with stdenv.lib;
stdenv.mkDerivation rec {
2014-11-15 15:21:36 +00:00
name = "abduco-0.2";
2014-07-23 12:49:43 +00:00
meta = {
homepage = http://brain-dump.org/projects/abduco;
license = licenses.isc;
2014-07-23 12:49:43 +00:00
description = "Allows programs to be run independently from its controlling terminal";
platforms = with platforms; linux;
};
src = fetchurl {
url = "http://www.brain-dump.org/projects/abduco/${name}.tar.gz";
2014-11-15 15:21:36 +00:00
sha256 = "04hrlxb02h2j8vxjnj263slyzxgkf7sncxfm0iwds5097f85mdy8";
2014-07-23 12:49:43 +00:00
};
configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";
buildInputs = [];
installPhase = ''
make PREFIX=$out install
'';
}