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

22 lines
582 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, pkg-config }:
2015-03-04 22:19:58 +00:00
stdenv.mkDerivation rec {
2021-08-10 11:01:56 +00:00
pname = "nss_wrapper";
version = "1.1.11";
2015-03-04 22:19:58 +00:00
src = fetchurl {
2021-08-10 11:01:56 +00:00
url = "mirror://samba/cwrap/nss_wrapper-${version}.tar.gz";
2020-04-06 06:04:08 +00:00
sha256 = "1q5l6w69yc71ly8gcbnkrcbnq6b64cbiiv99m0z5vn5lgwp36igv";
2015-03-04 22:19:58 +00:00
};
nativeBuildInputs = [ cmake pkg-config ];
2015-03-04 22:19:58 +00:00
meta = with lib; {
2015-03-06 11:09:10 +00: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 22:19:58 +00:00
license = licenses.bsd3;
platforms = platforms.unix;
broken = stdenv.isDarwin;
2015-03-04 22:19:58 +00:00
};
}