about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/pl/plistcpp/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/by-name/pl/plistcpp/package.nix')
-rw-r--r--nixpkgs/pkgs/by-name/pl/plistcpp/package.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/by-name/pl/plistcpp/package.nix b/nixpkgs/pkgs/by-name/pl/plistcpp/package.nix
new file mode 100644
index 000000000000..c2e765e4f5d0
--- /dev/null
+++ b/nixpkgs/pkgs/by-name/pl/plistcpp/package.nix
@@ -0,0 +1,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;
+  };
+}