summary refs log tree commit diff
path: root/pkgs/tools/misc/abduco
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/abduco')
-rw-r--r--pkgs/tools/misc/abduco/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/tools/misc/abduco/default.nix b/pkgs/tools/misc/abduco/default.nix
new file mode 100644
index 00000000000..9493df1c66c
--- /dev/null
+++ b/pkgs/tools/misc/abduco/default.nix
@@ -0,0 +1,27 @@
+{ lib, stdenv, fetchFromGitHub, writeText, conf ? null }:
+
+stdenv.mkDerivation rec {
+  pname = "abduco";
+  version = "2020-04-30";
+
+  src = fetchFromGitHub {
+    owner = "martanne";
+    repo = "abduco";
+    rev = "8c32909a159aaa9484c82b71f05b7a73321eb491";
+    sha256 = "0a3p8xljhpk7zh203s75248blfir15smgw5jmszwbmdpy4mqzd53";
+  };
+
+  preBuild = lib.optionalString (conf != null)
+    "cp ${writeText "config.def.h" conf} config.def.h";
+
+  installFlags = [ "install-completion" ];
+  CFLAGS = lib.optionalString stdenv.isDarwin "-D_DARWIN_C_SOURCE";
+
+  meta = with lib; {
+    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 = platforms.unix;
+  };
+}