about summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorMasum Reza <50095635+JohnRTitor@users.noreply.github.com>2024-05-05 00:26:40 +0530
committerGitHub <noreply@github.com>2024-05-04 21:56:40 +0300
commit791e05037de5b497a23c3d8c821a4751a722547b (patch)
tree564181041f3cab30f6fc503bbf36d55bd0a2cdba /pkgs/misc
parentefd518852d119c174039619a8c84fd11d1afba71 (diff)
ananicy-rules-cachyos: unstable-2024-04-22 -> unstable-2024-05-04 (#309083)
* ananicy-rules-cachyos: unstable-2024-04-22 -> unstable-2024-05-04

* ananicy-rules-cachyos: format using nixfmt-rfc-style

* ananicy-rules-cachyos: migrate to pkgs/by-name
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/ananicy-rules-cachyos/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/misc/ananicy-rules-cachyos/default.nix b/pkgs/misc/ananicy-rules-cachyos/default.nix
deleted file mode 100644
index fba65999b0f93..0000000000000
--- a/pkgs/misc/ananicy-rules-cachyos/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib, stdenvNoCC, fetchFromGitHub }:
-
-stdenvNoCC.mkDerivation {
-  pname = "ananicy-rules-cachyos";
-  version = "unstable-2024-04-22";
-
-  src = fetchFromGitHub {
-    owner = "CachyOS";
-    repo = "ananicy-rules";
-    rev = "8646faa8c0c8fc16d78ca3a25d65ddbd86b9d468";
-    hash = "sha256-b9M6Uqlb6Ysp8BRe1QV62sjVOU6tgFbrjTxDc3B4xlg=";
-  };
-
-  dontConfigure = true;
-  dontBuild = true;
-
-  installPhase = ''
-    runHook preInstall
-    mkdir -p $out/etc/ananicy.d
-    rm README.md LICENSE
-    cp -r * $out/etc/ananicy.d
-    runHook postInstall
-  '';
-
-  meta = {
-    homepage = "https://github.com/CachyOS/ananicy-rules";
-    description = "CachyOS' ananicy-rules meant to be used with ananicy-cpp";
-    license = lib.licenses.gpl3Only;
-    platforms = lib.platforms.linux;
-    maintainers = with lib.maintainers; [ artturin johnrtitor diniamo ];
-  };
-}