forked from lix-project/nixos-module
Revert "add pegtl to overlay for 2.91-dev"
This is no longer required since nixpkgs now has a pegtl of the exact
version seen here on both 24.05 and unstable.
Fixes: #33
This reverts commit f6e6871f38
.
This commit is contained in:
parent
533223d8ee
commit
550352df73
|
@ -99,8 +99,6 @@ let
|
||||||
);
|
);
|
||||||
|
|
||||||
nix-doc = prev.callPackage ./nix-doc/package.nix { withPlugin = false; };
|
nix-doc = prev.callPackage ./nix-doc/package.nix { withPlugin = false; };
|
||||||
|
|
||||||
pegtl = prev.callPackage ./pegtl.nix { };
|
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
# Make the overlay idempotent, since flakes passing nixos modules around by
|
# Make the overlay idempotent, since flakes passing nixos modules around by
|
||||||
|
|
23
pegtl.nix
23
pegtl.nix
|
@ -1,23 +0,0 @@
|
||||||
{
|
|
||||||
stdenv,
|
|
||||||
cmake,
|
|
||||||
ninja,
|
|
||||||
fetchFromGitHub,
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
pname = "pegtl";
|
|
||||||
version = "3.2.7";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
repo = "PEGTL";
|
|
||||||
owner = "taocpp";
|
|
||||||
rev = "refs/tags/3.2.7";
|
|
||||||
hash = "sha256-IV5YNGE4EWVrmg2Sia/rcU8jCuiBynQGJM6n3DCWTQU=";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
cmake
|
|
||||||
ninja
|
|
||||||
];
|
|
||||||
}
|
|
Loading…
Reference in a new issue