From 8b5ed12952300846928555b20fc10893f9df3965 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sat, 2 Jun 2018 16:13:38 +0200 Subject: libbsd-freedesktop: re-init at 0.9.1, use for samba a partial rollback of #41320 samba is already Linux-only because of acl, and it is unclear what the problem is with upstream netbsd-compat. --- pkgs/development/libraries/libbsd/default.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pkgs/development/libraries/libbsd/default.nix (limited to 'pkgs/development/libraries/libbsd/default.nix') diff --git a/pkgs/development/libraries/libbsd/default.nix b/pkgs/development/libraries/libbsd/default.nix new file mode 100644 index 00000000000..114d3209b58 --- /dev/null +++ b/pkgs/development/libraries/libbsd/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "libbsd-${version}"; + version = "0.9.1"; + + src = fetchurl { + url = "http://libbsd.freedesktop.org/releases/${name}.tar.xz"; + sha256 = "1957w2wi7iqar978qlfsm220dwywnrh5m58nrnn9zmi74ds3bn2n"; + }; + + patches = []; + + meta = with stdenv.lib; { + description = "Common functions found on BSD systems, Freedesktop fork"; + homepage = https://libbsd.freedesktop.org/; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ raskin ]; + }; +} -- cgit 1.4.1