From 95800b2991b9498298cce21098dd32f93efff827 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Mon, 2 Mar 2015 16:23:30 +0100 Subject: [PATCH] abduco: update from 0.2 to 0.3 --- pkgs/tools/misc/abduco/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/abduco/default.nix b/pkgs/tools/misc/abduco/default.nix index e5db7f26ef6f..dc5d469dc873 100644 --- a/pkgs/tools/misc/abduco/default.nix +++ b/pkgs/tools/misc/abduco/default.nix @@ -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 '';