libbsd: 0.8.2 -> 0.8.3

+7 -7
+7 -7
pkgs/development/libraries/libbsd/default.nix
··· 1 { stdenv, fetchurl }: 2 3 - let name = "libbsd-0.8.2"; 4 - in stdenv.mkDerivation { 5 - inherit name; 6 7 src = fetchurl { 8 url = "http://libbsd.freedesktop.org/releases/${name}.tar.xz"; 9 - sha256 = "02i5brb2007sxq3mn862mr7yxxm0g6nj172417hjyvjax7549xmj"; 10 }; 11 12 - meta = { 13 description = "Common functions found on BSD systems"; 14 homepage = http://libbsd.freedesktop.org/; 15 - license = stdenv.lib.licenses.bsd3; 16 - platforms = stdenv.lib.platforms.linux; 17 }; 18 }
··· 1 { stdenv, fetchurl }: 2 3 + stdenv.mkDerivation rec { 4 + name = "libbsd-${version}"; 5 + version = "0.8.3"; 6 7 src = fetchurl { 8 url = "http://libbsd.freedesktop.org/releases/${name}.tar.xz"; 9 + sha256 = "1a1l7afchlvvj2zfi7ajcg26bbkh5i98y2v5h9j5p1px9m7n6jwk"; 10 }; 11 12 + meta = with stdenv.lib; { 13 description = "Common functions found on BSD systems"; 14 homepage = http://libbsd.freedesktop.org/; 15 + license = licenses.bsd3; 16 + platforms = platforms.linux; 17 }; 18 }