nixpkgs/pkgs/development/libraries/nss_wrapper/default.nix

20 lines
522 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkg-config }:
2015-03-04 23:19:58 +01:00
stdenv.mkDerivation rec {
2020-04-06 08:04:08 +02:00
name = "nss_wrapper-1.1.11";
2015-03-04 23:19:58 +01:00
src = fetchurl {
url = "mirror://samba/cwrap/${name}.tar.gz";
2020-04-06 08:04:08 +02:00
sha256 = "1q5l6w69yc71ly8gcbnkrcbnq6b64cbiiv99m0z5vn5lgwp36igv";
2015-03-04 23:19:58 +01:00
};
nativeBuildInputs = [ cmake pkg-config ];
2015-03-04 23:19:58 +01:00
meta = with stdenv.lib; {
2015-03-06 12:09:10 +01:00
description = "A wrapper for the user, group and hosts NSS API";
homepage = "https://git.samba.org/?p=nss_wrapper.git;a=summary;";
2015-03-04 23:19:58 +01:00
license = licenses.bsd3;
platforms = platforms.all;
};
}