lol
at 17.09-beta 22 lines 563 B view raw
1{ stdenv, fetchFromGitHub, cmake, boost, NSPlist, pugixml }: 2 3stdenv.mkDerivation { 4 name = "PlistCpp-11615d"; 5 6 src = fetchFromGitHub { 7 owner = "matthewbauer"; 8 repo = "PlistCpp"; 9 rev = "11615deab3369356a182dabbf5bae30574967264"; 10 sha256 = "10jn6bvm9vn6492zix2pd724v5h4lccmkqg3lxfw8r0qg3av0yzv"; 11 }; 12 13 buildInputs = [ cmake boost NSPlist pugixml ]; 14 15 16 meta = with stdenv.lib; { 17 maintainers = with maintainers; [ matthewbauer ]; 18 description = "CPP bindings for Plist"; 19 license = licenses.mit; 20 platforms = platforms.unix; 21 }; 22}