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

26 lines
761 B
Nix
Raw Normal View History

2017-04-21 03:17:43 +02:00
{ stdenv, fetchurl, autoreconfHook }:
2017-03-01 02:35:26 +01:00
stdenv.mkDerivation rec {
name = "libbsd-${version}";
2017-10-22 00:36:25 +02:00
version = "0.8.6";
2017-04-21 03:17:43 +02:00
src = fetchurl {
url = "http://libbsd.freedesktop.org/releases/${name}.tar.xz";
2017-10-22 00:36:25 +02:00
sha256 = "11wnkzims5grprvhb1ssmq9pc2lcgh2r2rk8gwgz36ply6fvyzs6";
2017-04-21 03:17:43 +02:00
};
2017-04-21 03:17:43 +02:00
# darwin changes configure.ac which means we need to regenerate
# the configure scripts
nativeBuildInputs = [ autoreconfHook ];
2017-04-21 03:17:43 +02:00
patches = stdenv.lib.optionals stdenv.isDarwin [ ./darwin.patch ];
2017-03-01 02:35:26 +01:00
meta = with stdenv.lib; {
description = "Common functions found on BSD systems";
homepage = https://libbsd.freedesktop.org/;
2017-03-01 02:35:26 +01:00
license = licenses.bsd3;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ matthewbauer ];
};
}