summary refs log tree commit diff
path: root/pkgs/development/libraries/uid_wrapper/default.nix
blob: b19d404bee2f4794e0cad7772e440f99be913cda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
  };
}