gpl #20

Merged
bpeetz merged 6 commits from gpl into master 2024-05-08 19:23:12 +00:00
1 changed files with 9 additions and 2 deletions
Showing only changes of commit 205cf5963c - Show all commits

View File

@ -99,7 +99,6 @@
openssl
lua54Packages.lua
];
cargo_toml = craneLib.cleanCargoToml {cargoToml = ./Cargo.toml;};
pname = cargo_toml.package.name;
@ -107,7 +106,15 @@
craneBuild = craneLib.buildPackage {
inherit nativeBuildInputs buildInputs;
src = craneLib.cleanCargoSource ./.;
src = let
trixyFilter = path: _type: builtins.match ".*tri$" path != null;
markdownOrCargo = path: type:
(trixyFilter path type) || (craneLib.filterCargoSources path type);
in
pkgs.lib.cleanSourceWith {
src = craneLib.path ./.;
filter = markdownOrCargo;
};
doCheck = true;
};