This commit is contained in:
rasmus-kirk
2025-03-10 09:50:53 +01:00
parent 17d60afbbc
commit 29b7be20d4
2 changed files with 7 additions and 35 deletions
-25
View File
@@ -100,31 +100,6 @@
in {
default = website.package;
debug = website.loop;
testPkg = pkgs.stdenv.mkDerivation {
name = "test-pkg";
src = ./.;
buildInputs = [(
pkgs.writeShellApplication {
name = "test-pkg-builder";
runtimeInputs = with pkgs; [
pandoc
coreutils
findutils
gnused
rsync
git
];
text = ''
echo "${self.lastModified}"
'';
}
)];
phases = ["unpackPhase" "buildPhase"];
buildPhase = "test-pkg-builder";
};
});
formatter = forAllSystems ({pkgs}: pkgs.alejandra);