mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
uid_wrapper: Add derivation
This commit is contained in:
parent
88c01c5647
commit
c5dce2def0
21
pkgs/development/libraries/uid_wrapper/default.nix
Normal file
21
pkgs/development/libraries/uid_wrapper/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user