nixpkgs/pkgs/development/libraries/libbsd/default.nix
Michael Raskin 8b5ed12952 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.
2018-06-02 16:15:38 +02:00

22 lines
549 B
Nix

{ 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 ];
};
}