Commit bdf1699e authored by diniamo's avatar diniamo
Browse files

ananicy-rules-cachyos: fix hooks and pname

parent de009cd3
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "ananicy";
stdenv.mkDerivation {
  pname = "ananicy-rules-cachyos";
  version = "unstable-2024-04-10";

  src = fetchFromGitHub {
@@ -15,11 +15,11 @@ stdenv.mkDerivation rec {
  dontBuild = true;

  installPhase = ''
    runHook preBuild
    runHook preInstall
    mkdir -p $out
    cp -r * $out
    rm $out/README.md
    runHook postBuild
    runHook postInstall
  '';

  meta = with lib; {
@@ -27,6 +27,6 @@ stdenv.mkDerivation rec {
    description = "ananicy-cpp-rules for CachyOS ";
    license = licenses.gpl3Only;
    platforms = platforms.linux;
    maintainers = with maintainers; [ artturin johnrtitor ];
    maintainers = with maintainers; [ artturin johnrtitor diniamo ];
  };
}