tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libbsd: 0.8.2 -> 0.8.3
Peter Hoeg
9 years ago
fa03b827
ab6d358e
+7
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libbsd
default.nix
+7
-7
pkgs/development/libraries/libbsd/default.nix
···
1
1
{ stdenv, fetchurl }:
2
2
3
3
-
let name = "libbsd-0.8.2";
4
4
-
in stdenv.mkDerivation {
5
5
-
inherit name;
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "libbsd-${version}";
5
5
+
version = "0.8.3";
6
6
7
7
src = fetchurl {
8
8
url = "http://libbsd.freedesktop.org/releases/${name}.tar.xz";
9
9
-
sha256 = "02i5brb2007sxq3mn862mr7yxxm0g6nj172417hjyvjax7549xmj";
9
9
+
sha256 = "1a1l7afchlvvj2zfi7ajcg26bbkh5i98y2v5h9j5p1px9m7n6jwk";
10
10
};
11
11
12
12
-
meta = {
12
12
+
meta = with stdenv.lib; {
13
13
description = "Common functions found on BSD systems";
14
14
homepage = http://libbsd.freedesktop.org/;
15
15
-
license = stdenv.lib.licenses.bsd3;
16
16
-
platforms = stdenv.lib.platforms.linux;
15
15
+
license = licenses.bsd3;
16
16
+
platforms = platforms.linux;
17
17
};
18
18
}