nixpkgs/pkgs/development/libraries/libbsd/default.nix

19 lines
465 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2017-03-01 02:35:26 +01:00
stdenv.mkDerivation rec {
name = "libbsd-${version}";
version = "0.8.3";
src = fetchurl {
2014-10-08 20:00:11 +02:00
url = "http://libbsd.freedesktop.org/releases/${name}.tar.xz";
2017-03-01 02:35:26 +01:00
sha256 = "1a1l7afchlvvj2zfi7ajcg26bbkh5i98y2v5h9j5p1px9m7n6jwk";
};
2017-03-01 02:35:26 +01:00
meta = with stdenv.lib; {
description = "Common functions found on BSD systems";
homepage = http://libbsd.freedesktop.org/;
2017-03-01 02:35:26 +01:00
license = licenses.bsd3;
platforms = platforms.linux;
};
}