nixpkgs/pkgs/by-name/ns/nsplist/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
735 B
Nix
Raw Normal View History

2024-01-05 20:09:48 +00:00
{ lib
, stdenv
, fetchFromGitHub
, cmake
, flex
}:
2017-04-11 08:22:32 +00:00
stdenv.mkDerivation {
2024-01-05 20:09:48 +00:00
pname = "nsplist";
version = "0-unstable-2017-04-11";
2017-04-11 08:22:32 +00:00
src = fetchFromGitHub {
owner = "matthewbauer";
repo = "NSPlist";
rev = "713decf06c1ef6c39a707bc99eb45ac9925f2b8a";
2024-01-05 20:09:48 +00:00
hash = "sha256-mRyuElLTlOZuUlQ3dKZJbclPq73Gv+YFrBCB5nh0nmw=";
2017-04-11 08:22:32 +00:00
};
2024-01-05 20:09:48 +00:00
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;
};
2017-04-11 08:22:32 +00:00
}