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

21 lines
571 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig }:
2015-03-04 22:47:37 +00:00
stdenv.mkDerivation rec {
2015-08-29 00:53:48 +00:00
name = "uid_wrapper-1.1.1";
2015-03-04 22:47:37 +00:00
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
2015-08-29 00:53:48 +00:00
sha256 = "0y033cjs0kwmpx70xc4wh789vk9rw6bziizs28h50ad7lyyvx5b9";
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;
};
}