about summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2023-07-08 20:43:46 +0300
committerArtturin <Artturin@artturin.com>2023-07-09 00:58:05 +0300
commit7b0df0c04225a107e283a210cbee95f462d8ad7d (patch)
tree26c9246f5e17deffd38496fc5894a5df8bab7d64 /pkgs/misc
parentaae2268e0a451c16570962945fffa8876df883d5 (diff)
ananicy-cpp-rules: init at unstable-2023-06-28
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/ananicy-rules-cachyos/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/misc/ananicy-rules-cachyos/default.nix b/pkgs/misc/ananicy-rules-cachyos/default.nix
new file mode 100644
index 0000000000000..575f582d2c9fc
--- /dev/null
+++ b/pkgs/misc/ananicy-rules-cachyos/default.nix
@@ -0,0 +1,32 @@
+{ lib, stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  pname = "ananicy";
+  version = "unstable-2023-06-28";
+
+  src = fetchFromGitHub {
+    owner = "CachyOS";
+    repo = "ananicy-rules";
+    rev = "b2b4342d769bc3c6abc4ce77bd53d6ca06d659e5";
+    sha256 = "sha256-TGX7GlfSeKu68mVM71/kdJH31gzMmhzCAqA390aEq8U=";
+  };
+
+  dontConfigure = true;
+  dontBuild = true;
+
+  installPhase = ''
+    runHook preBuild
+    mkdir -p $out
+    cp -r * $out
+    rm $out/README.md
+    runHook postBuild
+  '';
+
+  meta = with lib; {
+    homepage = "https://github.com/CachyOS/ananicy-rules";
+    description = "ananicy-cpp-rules for CachyOS ";
+    license = licenses.gpl3Only;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ artturin ];
+  };
+}