mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
9e5fe7738a
also: - NSPlist - PlistCpp
23 lines
563 B
Nix
23 lines
563 B
Nix
{ stdenv, fetchFromGitHub, cmake, boost, NSPlist, pugixml }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "PlistCpp-11615d";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "matthewbauer";
|
|
repo = "PlistCpp";
|
|
rev = "11615deab3369356a182dabbf5bae30574967264";
|
|
sha256 = "10jn6bvm9vn6492zix2pd724v5h4lccmkqg3lxfw8r0qg3av0yzv";
|
|
};
|
|
|
|
buildInputs = [ cmake boost NSPlist pugixml ];
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
maintainers = with maintainers; [ matthewbauer ];
|
|
description = "CPP bindings for Plist";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|