about summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorAleksana <me@aleksana.moe>2024-04-18 00:21:14 +0800
committerGitHub <noreply@github.com>2024-04-18 00:21:14 +0800
commit9884c918e77633eeed17863ae5862254b3e502ab (patch)
tree4b0f4d9d07c92bac44efbe0929db56356e561d85 /pkgs/misc
parentf4610006d01bef1bdd96ffbe36cb3a984ce19ae0 (diff)
parent8244df7e3a6e02c03454d478b886d30281893f19 (diff)
Merge pull request #304469 from JohnRTitor/ananicy-cachyos-rules
ananicy-rules-cachyos: unstable-2024-04-10 -> unstable-2024-04-16
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/ananicy-rules-cachyos/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/misc/ananicy-rules-cachyos/default.nix b/pkgs/misc/ananicy-rules-cachyos/default.nix
index d987d40f3cb5d..b7970eff2ef9b 100644
--- a/pkgs/misc/ananicy-rules-cachyos/default.nix
+++ b/pkgs/misc/ananicy-rules-cachyos/default.nix
@@ -1,14 +1,14 @@
-{ lib, stdenv, fetchFromGitHub }:
+{ lib, stdenvNoCC, fetchFromGitHub }:
 
-stdenv.mkDerivation {
+stdenvNoCC.mkDerivation {
   pname = "ananicy-rules-cachyos";
-  version = "unstable-2024-04-10";
+  version = "unstable-2024-04-16";
 
   src = fetchFromGitHub {
     owner = "CachyOS";
     repo = "ananicy-rules";
-    rev = "de55e2f55e6adf559bf4990aa433f5c202dc073d";
-    sha256 = "sha256-TWaOMVEeTLI67eG5BPyb+OSnz31QvTueQD2yfEEbTEo=";
+    rev = "7abaddd5cac23d9fd7a0f0aeccb7a0287456802b";
+    hash = "sha256-06q9dYLdg+AhT8L2OeoDsG7hHlmx/uf/RIwblODiSnE=";
   };
 
   dontConfigure = true;
@@ -16,15 +16,15 @@ stdenv.mkDerivation {
 
   installPhase = ''
     runHook preInstall
-    mkdir -p $out
-    cp -r * $out
-    rm $out/README.md
+    mkdir -p $out/etc/ananicy.d
+    rm README.md LICENSE
+    cp -r * $out/etc/ananicy.d
     runHook postInstall
   '';
 
   meta = with lib; {
     homepage = "https://github.com/CachyOS/ananicy-rules";
-    description = "ananicy-cpp-rules for CachyOS ";
+    description = "CachyOS' ananicy-rules meant to be used with ananicy-cpp";
     license = licenses.gpl3Only;
     platforms = platforms.linux;
     maintainers = with maintainers; [ artturin johnrtitor diniamo ];