nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 21.11 23 lines 612 B view raw
1{ lib, stdenv, fetchFromGitHub, cmake, boost, NSPlist, pugixml }: 2 3stdenv.mkDerivation { 4 pname = "PlistCpp"; 5 version = "unstable-11615d"; 6 7 src = fetchFromGitHub { 8 owner = "matthewbauer"; 9 repo = "PlistCpp"; 10 rev = "11615deab3369356a182dabbf5bae30574967264"; 11 sha256 = "10jn6bvm9vn6492zix2pd724v5h4lccmkqg3lxfw8r0qg3av0yzv"; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 buildInputs = [ boost NSPlist pugixml ]; 16 17 meta = with lib; { 18 maintainers = with maintainers; [ matthewbauer ]; 19 description = "CPP bindings for Plist"; 20 license = licenses.mit; 21 platforms = platforms.unix; 22 }; 23}