summary refs log tree commit diff
path: root/pkgs/servers/pounce
diff options
context:
space:
mode:
authoredef <edef@edef.eu>2019-11-27 19:54:48 +0000
committeredef <edef@edef.eu>2020-01-06 01:04:47 +0000
commit2a06e1521fe2d0aab2b0e244a1566fcc20b27f1b (patch)
tree5c2393c404a90310163ed5392318ba497ab128c0 /pkgs/servers/pounce
parent7d8205bc09de932421f95206e6d11a2d58e0cbec (diff)
downloadnixpkgs-2a06e1521fe2d0aab2b0e244a1566fcc20b27f1b.tar
nixpkgs-2a06e1521fe2d0aab2b0e244a1566fcc20b27f1b.tar.gz
nixpkgs-2a06e1521fe2d0aab2b0e244a1566fcc20b27f1b.tar.bz2
nixpkgs-2a06e1521fe2d0aab2b0e244a1566fcc20b27f1b.tar.lz
nixpkgs-2a06e1521fe2d0aab2b0e244a1566fcc20b27f1b.tar.xz
nixpkgs-2a06e1521fe2d0aab2b0e244a1566fcc20b27f1b.tar.zst
nixpkgs-2a06e1521fe2d0aab2b0e244a1566fcc20b27f1b.zip
pounce: init at 1.0p1
Diffstat (limited to 'pkgs/servers/pounce')
-rw-r--r--pkgs/servers/pounce/default.nix48
1 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/servers/pounce/default.nix b/pkgs/servers/pounce/default.nix
new file mode 100644
index 00000000000..c581027530e
--- /dev/null
+++ b/pkgs/servers/pounce/default.nix
@@ -0,0 +1,48 @@
+{ stdenv, libressl, fetchzip, fetchpatch }:
+
+stdenv.mkDerivation rec {
+  pname = "pounce";
+  version = "1.0p1";
+
+  src = fetchzip {
+    url = "https://code.causal.agency/june/pounce/archive/${version}.zip";
+    sha256 = "1fh1cf15ybl962n7x70hlg7zfcmpwgq6q90s74d3jhawmjj01syw";
+  };
+
+  patches = [
+    # Don't always create ${ETCDIR}/rc.d
+    (fetchpatch {
+      url = https://code.causal.agency/june/pounce/commit/db65889605a2fa5352e90a573b7584a6b7a59dd5.patch;
+      sha256 = "0bxhig72g4q0hs8lb7g8lb7kf0w9jdy22qwm9yndlwrdw3vi36zq";
+    })
+    # Simplify Linux.mk
+    (fetchpatch {
+      url = https://code.causal.agency/june/pounce/commit/b7dc2e3439a37d23d4847e130b37ece39b8efdd7.patch;
+      sha256 = "0c2pa6w9abkmaaq4957arfmpsrn933vcrs4a2da785v57pgkj4lq";
+    })
+    # Reference openssl(1) by absolute path
+    (fetchpatch {
+      url = https://code.causal.agency/june/pounce/commit/973f19b4fe73ef956fbb4eeaf963bbb83c926203.patch;
+      sha256 = "1w4rhwqfcakzb9a6afq788rrsypay0rw75bjk2f3l66spjb7v3ps";
+    })
+  ];
+
+  buildInputs = [ libressl ];
+
+  configurePhase = "ln -s Linux.mk config.mk";
+
+  buildFlags = [ "all" ];
+
+  makeFlags = [
+    "PREFIX=$(out)"
+    "LIBRESSL_BIN_PREFIX=${libressl}/bin"
+  ];
+
+  meta = with stdenv.lib; {
+    homepage = https://code.causal.agency/june/pounce;
+    description = "Simple multi-client TLS-only IRC bouncer";
+    license = licenses.gpl3;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ edef ];
+  };
+}