From e81875ded2af9753de4ebee9933f787803ef6249 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 24 Dec 2021 14:06:21 +0800 Subject: [PATCH] helvum: prePatch -> postPatch --- pkgs/applications/audio/helvum/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/helvum/default.nix b/pkgs/applications/audio/helvum/default.nix index 24652f95a389..30dc359731f5 100644 --- a/pkgs/applications/audio/helvum/default.nix +++ b/pkgs/applications/audio/helvum/default.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { }) ]; - prePatch = '' + postPatch = '' patchShebangs build-aux/cargo.sh ''; @@ -68,6 +68,6 @@ stdenv.mkDerivation rec { homepage = "https://gitlab.freedesktop.org/ryuukyu/helvum"; license = licenses.gpl3Only; maintainers = with maintainers; [ fufexan ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }