about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/pl/plistcpp/package.nix
blob: c2e765e4f5d05248a04d5a8ebdb42c92aa41db64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ lib
, stdenv
, fetchFromGitHub
, cmake
, boost
, nsplist
, pugixml
}:

stdenv.mkDerivation {
  pname = "plistcpp";
  version = "0-unstable-2017-04-11";

  src = fetchFromGitHub {
    owner = "matthewbauer";
    repo = "PlistCpp";
    rev = "11615deab3369356a182dabbf5bae30574967264";
    hash = "sha256-+3uw1XgYZMRdp+PhWRmjBJZNxGlX9PhFIsbuVPcyVoI=";
  };

  postPatch = ''
    sed -i "1i #include <algorithm>" src/Plist.cpp
  '';

  nativeBuildInputs = [
    cmake
  ];

  buildInputs = [
    boost
    nsplist
    pugixml
  ];

  meta = with lib; {
    maintainers = with maintainers; [ matthewbauer ];
    description = "CPP bindings for Plist";
    license = licenses.mit;
    platforms = platforms.unix;
  };
}