about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/ns/nsplist/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/by-name/ns/nsplist/package.nix')
-rw-r--r--nixpkgs/pkgs/by-name/ns/nsplist/package.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/by-name/ns/nsplist/package.nix b/nixpkgs/pkgs/by-name/ns/nsplist/package.nix
new file mode 100644
index 000000000000..92495409f65a
--- /dev/null
+++ b/nixpkgs/pkgs/by-name/ns/nsplist/package.nix
@@ -0,0 +1,35 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, flex
+}:
+
+stdenv.mkDerivation {
+  pname = "nsplist";
+  version = "0-unstable-2017-04-11";
+
+  src = fetchFromGitHub {
+    owner = "matthewbauer";
+    repo = "NSPlist";
+    rev = "713decf06c1ef6c39a707bc99eb45ac9925f2b8a";
+    hash = "sha256-mRyuElLTlOZuUlQ3dKZJbclPq73Gv+YFrBCB5nh0nmw=";
+  };
+
+  nativeBuildInputs = [
+    cmake
+    flex
+  ];
+
+  preConfigure = ''
+    # Regenerate the lexer for improved compatibility with clang 16.
+    flex -o src/NSPlistLexer.cpp <(tail --lines=+17 src/NSPlistLexer.l)
+  '';
+
+  meta = with lib; {
+    maintainers = with maintainers; [ matthewbauer ];
+    description = "Parses .plist files";
+    license = licenses.mit;
+    platforms = platforms.unix;
+  };
+}