nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchurl, cmake, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 name = "uid_wrapper-1.2.8";
5
6 src = fetchurl {
7 url = "mirror://samba/cwrap/${name}.tar.gz";
8 sha256 = "0swm9d8l69dw7nbrw6xh7rdy7cfrqflw3hxshicsrhd9v03iwvqf";
9 };
10
11 nativeBuildInputs = [ cmake pkgconfig ];
12
13 meta = with stdenv.lib; {
14 description = "A wrapper for the user, group and hosts NSS API";
15 homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;";
16 license = licenses.bsd3;
17 platforms = platforms.all;
18 };
19}