From faf799b9d2000c4d625073d00991fdbd4ddc4427 Mon Sep 17 00:00:00 2001 From: superherointj <5861043+superherointj@users.noreply.github.com> Date: Fri, 17 May 2024 12:47:18 -0300 Subject: [PATCH] plymouth-matrix-theme: cleanup derivation * add install hooks * move postPatch to match phases order * skip a line after version --- pkgs/by-name/pl/plymouth-matrix-theme/package.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pl/plymouth-matrix-theme/package.nix b/pkgs/by-name/pl/plymouth-matrix-theme/package.nix index 448bc7e91f65..5db5be9c3f46 100644 --- a/pkgs/by-name/pl/plymouth-matrix-theme/package.nix +++ b/pkgs/by-name/pl/plymouth-matrix-theme/package.nix @@ -4,9 +4,11 @@ lib, unstableGitUpdater, }: + stdenvNoCC.mkDerivation { pname = "plymouth-matrix-theme"; version = "0.1.0-unstable-19-02-2017"; + src = fetchFromGitHub { owner = "storax"; repo = "plymouth-matrix-theme"; @@ -14,17 +16,19 @@ stdenvNoCC.mkDerivation { hash = "sha256-JmMmpw1By5U6OTaSPnJOZZxrieSnXivMmdt/JPazjpI="; }; - dontBuild = true; - postPatch = '' # Remove not needed files rm README.rst LICENSE Makefile ''; + dontBuild = true; + installPhase = '' + runHook preInstall mkdir -p $out/share/plymouth/themes/matrix cp * $out/share/plymouth/themes/matrix find $out/share/plymouth/themes/ -name \*.plymouth -exec sed -i "s@\/usr\/@$out\/@" {} \; + runHook postInstall ''; passthru.updateScript = unstableGitUpdater;