Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
742 B
Nix
37 lines
742 B
Nix
{
|
|
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;
|
|
};
|
|
}
|