summary refs log tree commit diff
path: root/pkgs/development/libraries/libbsd/default.nix
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2016-02-27 14:32:56 -0600
committerGraham Christensen <graham@grahamc.com>2016-02-27 14:32:56 -0600
commita1b69275afca5ec06e930c4605d55778ee6de4b8 (patch)
tree50b87313ba860f8e9ad59298926954cfa9de342e /pkgs/development/libraries/libbsd/default.nix
parent3e1b8935c07ae44455af893e93f28b4ccc46dbf0 (diff)
downloadnixpkgs-a1b69275afca5ec06e930c4605d55778ee6de4b8.tar
nixpkgs-a1b69275afca5ec06e930c4605d55778ee6de4b8.tar.gz
nixpkgs-a1b69275afca5ec06e930c4605d55778ee6de4b8.tar.bz2
nixpkgs-a1b69275afca5ec06e930c4605d55778ee6de4b8.tar.lz
nixpkgs-a1b69275afca5ec06e930c4605d55778ee6de4b8.tar.xz
nixpkgs-a1b69275afca5ec06e930c4605d55778ee6de4b8.tar.zst
nixpkgs-a1b69275afca5ec06e930c4605d55778ee6de4b8.zip
libbsd: 0.7.0 -> 0.8.2 for CVE-2016-2090
Diffstat (limited to 'pkgs/development/libraries/libbsd/default.nix')
-rw-r--r--pkgs/development/libraries/libbsd/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libbsd/default.nix b/pkgs/development/libraries/libbsd/default.nix
index bc88d8dc12c..541f70cabb8 100644
--- a/pkgs/development/libraries/libbsd/default.nix
+++ b/pkgs/development/libraries/libbsd/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl }:
 
-let name = "libbsd-0.7.0";
+let name = "libbsd-0.8.2";
 in stdenv.mkDerivation {
   inherit name;
 
   src = fetchurl {
     url = "http://libbsd.freedesktop.org/releases/${name}.tar.xz";
-    sha256 = "1fqhbi0vd6xjxazf633x388cc8qyn58l78704s0h6k63wlbhwfqg";
+    sha256 = "02i5brb2007sxq3mn862mr7yxxm0g6nj172417hjyvjax7549xmj";
   };
 
   patchPhase = ''
@@ -15,7 +15,7 @@ in stdenv.mkDerivation {
       --replace "{exec_prefix}" "{prefix}"
   '';
 
-  meta = { 
+  meta = {
     description = "Common functions found on BSD systems";
     homepage = http://libbsd.freedesktop.org/;
     license = stdenv.lib.licenses.bsd3;