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

21 lines
572 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig }:
2015-03-04 22:47:37 +00:00
stdenv.mkDerivation rec {
2015-11-08 02:52:45 +00:00
name = "uid_wrapper-1.2.0";
2015-03-04 22:47:37 +00:00
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
2015-11-08 02:52:45 +00:00
sha256 = "0sfznk53kmz9m3rxwbv4pwwqs4bw3kr917y4n53h5jaxjym0m4c0";
2015-03-04 22:47:37 +00:00
};
2015-08-29 00:53:48 +00:00
nativeBuildInputs = [ cmake pkgconfig ];
2015-03-04 22:47:37 +00:00
meta = with stdenv.lib; {
description = "A wrapper for the user, group and hosts NSS API";
homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;";
2015-03-04 22:47:37 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.all;
};
}