2012-02-05 00:51:35 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2016-02-27 20:32:56 +00:00
|
|
|
let name = "libbsd-0.8.2";
|
2012-02-05 00:51:35 +00:00
|
|
|
in stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-10-08 18:00:11 +00:00
|
|
|
url = "http://libbsd.freedesktop.org/releases/${name}.tar.xz";
|
2016-02-27 20:32:56 +00:00
|
|
|
sha256 = "02i5brb2007sxq3mn862mr7yxxm0g6nj172417hjyvjax7549xmj";
|
2012-02-05 00:51:35 +00:00
|
|
|
};
|
|
|
|
|
2016-02-27 20:32:56 +00:00
|
|
|
meta = {
|
2012-02-05 00:51:35 +00:00
|
|
|
description = "Common functions found on BSD systems";
|
|
|
|
homepage = http://libbsd.freedesktop.org/;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-02-05 00:51:35 +00:00
|
|
|
};
|
|
|
|
}
|