diff --git a/pkgs/by-name/fi/filterpath/package.nix b/pkgs/by-name/fi/filterpath/package.nix index 4e02cebf9c56..291604b5eb81 100644 --- a/pkgs/by-name/fi/filterpath/package.nix +++ b/pkgs/by-name/fi/filterpath/package.nix @@ -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; }; })