3
0
Fork 0
forked from mirrors/nixpkgs

uid_wrapper: Add derivation

This commit is contained in:
William A. Kennington III 2015-03-04 14:47:37 -08:00
parent 88c01c5647
commit c5dce2def0
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, fetchgit, cmake, pkgconfig }:
stdenv.mkDerivation rec {
name = "uid_wrapper-1.1.0";
src = fetchgit {
url = "git://git.samba.org/uid_wrapper.git";
rev = "refs/tags/${name}";
sha256 = "1wb71lliw56pmks3vm9m3ndf8hqnyw9iyppy1nyl80msi4ssq5jj";
};
buildInputs = [ cmake pkgconfig ];
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;
};
}

View file

@ -7443,6 +7443,8 @@ let
tremor = callPackage ../development/libraries/tremor { };
uid_wrapper = callPackage ../development/libraries/uid_wrapper { };
unicap = callPackage ../development/libraries/unicap {};
tsocks = callPackage ../development/libraries/tsocks { };