about summary refs log tree commit diff
path: root/pkgs/development/libraries/PlistCpp/default.nix
blob: 511915be39f5b14b127337a0f976a4d58a5c3ac8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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 ];
}