summary refs log tree commit diff
path: root/pkgs/servers/pim6sd
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2020-05-25 00:04:55 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2020-05-25 00:53:33 +0200
commitf55568dc35343cd45afa38fdb34275fcfc4b012c (patch)
tree3db14ff9222df9958af6c166d039f2c9a27e38b6 /pkgs/servers/pim6sd
parentfe58ddb043854f75c8a270056595358a69a15533 (diff)
downloadnixpkgs-f55568dc35343cd45afa38fdb34275fcfc4b012c.tar
nixpkgs-f55568dc35343cd45afa38fdb34275fcfc4b012c.tar.gz
nixpkgs-f55568dc35343cd45afa38fdb34275fcfc4b012c.tar.bz2
nixpkgs-f55568dc35343cd45afa38fdb34275fcfc4b012c.tar.lz
nixpkgs-f55568dc35343cd45afa38fdb34275fcfc4b012c.tar.xz
nixpkgs-f55568dc35343cd45afa38fdb34275fcfc4b012c.tar.zst
nixpkgs-f55568dc35343cd45afa38fdb34275fcfc4b012c.zip
pim6sd: init at unstable-2019-05-31
Diffstat (limited to 'pkgs/servers/pim6sd')
-rw-r--r--pkgs/servers/pim6sd/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/servers/pim6sd/default.nix b/pkgs/servers/pim6sd/default.nix
new file mode 100644
index 00000000000..6752a8089af
--- /dev/null
+++ b/pkgs/servers/pim6sd/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub, lib, autoreconfHook, yacc, flex }:
+
+stdenv.mkDerivation rec {
+  pname = "pim6sd";
+  version = "unstable-2019-05-31";
+
+  src = fetchFromGitHub {
+    owner = "troglobit";
+    repo = "pim6sd";
+    rev = "fa3909529981dd705ba9ead0517222c30c581a4e";
+    sha256 = "0x7dyark2mp9xqz9cnmmgaf0z143vxn2835clllpji4ylg77zdjw";
+  };
+
+  nativeBuildInputs = [ autoreconfHook yacc flex ];
+
+  meta = with lib; {
+    description = "PIM for IPv6 sparse mode daemon";
+    homepage = "https://github.com/troglobit/pim6sd";
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ hexa ];
+    platforms = platforms.unix;
+  };
+}