filterpath: 1.0.3 -> 1.0.4

a
This commit is contained in:
Sigmanificient
2026-01-03 03:37:47 +01:00
parent 7152707e1a
commit 4471c23f53
+3 -10
View File
@@ -5,13 +5,13 @@
}:
stdenv.mkDerivation (finalAttrs: {
name = "filterpath";
version = "1.0.3";
version = "1.0.4";
src = fetchFromGitHub {
owner = "Sigmanificient";
repo = "filterpath";
tag = finalAttrs.version;
hash = "sha256-GW8f3o7D5ddHQ8WZvds6rcsKPmlTSr/w4k2mU7oR6aM=";
hash = "sha256-FOewYznmWOWH2TyNySVoa+spvH4QlXnjlko+/zFiNik=";
};
makeFlags = [
@@ -20,13 +20,6 @@ stdenv.mkDerivation (finalAttrs: {
];
doCheck = true;
checkPhase = ''
runHook preCheck
echo "[`pwd`]" | ./filterpath | grep "`pwd`"
runHook postCheck
'';
meta = {
homepage = "https://github.com/Sigmanificient/filterpath";
@@ -34,6 +27,6 @@ stdenv.mkDerivation (finalAttrs: {
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ sigmanificient ];
mainProgram = "filterpath";
platforms = lib.platforms.linux;
platforms = lib.platforms.unix;
};
})