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

20 lines
519 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig }:
2015-03-04 23:47:37 +01:00
stdenv.mkDerivation rec {
name = "uid_wrapper-1.2.7";
2015-03-04 23:47:37 +01:00
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
sha256 = "0mpzr70n24b0khri89hipxiqqay370m93syhnywrdmdxr3dhw2d8";
2015-03-04 23:47:37 +01:00
};
2015-08-29 02:53:48 +02:00
nativeBuildInputs = [ cmake pkgconfig ];
2015-03-04 23:47:37 +01: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 23:47:37 +01:00
license = licenses.bsd3;
platforms = platforms.all;
};
}