20 lines
519 B
Nix
20 lines
519 B
Nix
|
{ stdenv, fetchurl, cmake, pkgconfig }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "uid_wrapper-1.2.8";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://samba/cwrap/${name}.tar.gz";
|
||
|
sha256 = "0swm9d8l69dw7nbrw6xh7rdy7cfrqflw3hxshicsrhd9v03iwvqf";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ 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;
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|