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

19 lines
461 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
let name = "libbsd-0.8.2";
in stdenv.mkDerivation {
inherit name;
src = fetchurl {
2014-10-08 20:00:11 +02:00
url = "http://libbsd.freedesktop.org/releases/${name}.tar.xz";
sha256 = "02i5brb2007sxq3mn862mr7yxxm0g6nj172417hjyvjax7549xmj";
};
meta = {
description = "Common functions found on BSD systems";
homepage = http://libbsd.freedesktop.org/;
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.linux;
};
}