summary refs log tree commit diff
path: root/pkgs/development/libraries/uid_wrapper
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-03-04 14:47:37 -0800
committerWilliam A. Kennington III <william@wkennington.com>2015-03-04 16:48:52 -0800
commitc5dce2def01964636c50d0d2f2e9b68b759553b5 (patch)
tree4656a8493dd1f8b767affa7d464081aecffb720c /pkgs/development/libraries/uid_wrapper
parent88c01c5647e435e298525aff5dcd2c60674e5282 (diff)
downloadnixpkgs-c5dce2def01964636c50d0d2f2e9b68b759553b5.tar
nixpkgs-c5dce2def01964636c50d0d2f2e9b68b759553b5.tar.gz
nixpkgs-c5dce2def01964636c50d0d2f2e9b68b759553b5.tar.bz2
nixpkgs-c5dce2def01964636c50d0d2f2e9b68b759553b5.tar.lz
nixpkgs-c5dce2def01964636c50d0d2f2e9b68b759553b5.tar.xz
nixpkgs-c5dce2def01964636c50d0d2f2e9b68b759553b5.tar.zst
nixpkgs-c5dce2def01964636c50d0d2f2e9b68b759553b5.zip
uid_wrapper: Add derivation
Diffstat (limited to 'pkgs/development/libraries/uid_wrapper')
-rw-r--r--pkgs/development/libraries/uid_wrapper/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/uid_wrapper/default.nix b/pkgs/development/libraries/uid_wrapper/default.nix
new file mode 100644
index 00000000000..fa8e29e4098
--- /dev/null
+++ b/pkgs/development/libraries/uid_wrapper/default.nix
@@ -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;
+  };
+}