about summary refs log tree commit diff
path: root/pkgs/development/libraries/libnetfilter_cthelper
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2022-05-15 11:19:19 +0300
committerIzorkin <izorkin@elven.pw>2022-06-09 21:55:31 +0300
commit05373e130b16bc9080c7fc1908b8c9702e8bbc22 (patch)
tree3e81e71af594787ec8f8c2197e1e8a6979a8f146 /pkgs/development/libraries/libnetfilter_cthelper
parentd7f012f33ce5ee308f75f3f53a1e8189c6dc15d8 (diff)
libnetfilter_cthelper: 1.0.0 -> 1.0.1
Diffstat (limited to 'pkgs/development/libraries/libnetfilter_cthelper')
-rw-r--r--pkgs/development/libraries/libnetfilter_cthelper/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libnetfilter_cthelper/default.nix b/pkgs/development/libraries/libnetfilter_cthelper/default.nix
index 294f776192d7f..5d221bed34a02 100644
--- a/pkgs/development/libraries/libnetfilter_cthelper/default.nix
+++ b/pkgs/development/libraries/libnetfilter_cthelper/default.nix
@@ -2,13 +2,15 @@
 
 stdenv.mkDerivation rec {
   pname = "libnetfilter_cthelper";
-  version = "1.0.0";
+  version = "1.0.1";
 
   src = fetchurl {
     url = "https://netfilter.org/projects/libnetfilter_cthelper/files/${pname}-${version}.tar.bz2";
-    sha256 = "07618e71c4d9a6b6b3dc1986540486ee310a9838ba754926c7d14a17d8fccf3d";
+    sha256 = "sha256-FAc9VIcjOJc1XT/wTdwcjQPMW6jSNWI2qogWGp8tyRI=";
   };
 
+  outputs = [ "out" "dev" ];
+
   nativeBuildInputs = [ pkg-config ];
   buildInputs = [ libmnl ];