nixpkgs/pkgs/development/libraries/uid_wrapper/default.nix
Vladimír Čunát 5227fb1dd5 Merge commit staging+systemd into closure-size
Many non-conflict problems weren't (fully) resolved in this commit yet.
2015-10-03 13:33:37 +02:00

22 lines
621 B
Nix

{ stdenv, fetchurl, cmake, pkgconfig }:
stdenv.mkDerivation rec {
name = "uid_wrapper-1.1.1";
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
sha256 = "0y033cjs0kwmpx70xc4wh789vk9rw6bziizs28h50ad7lyyvx5b9";
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ (stdenv.cc.libc.out or null) ];
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";
license = licenses.bsd3;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.all;
};
}