nixpkgs/pkgs/misc/ananicy-rules-cachyos/default.nix
John Titor 68b0265ab5
ananicy-rules-cachyos: unstable-2023-10-11 -> unstable-2024-04-10
commit: de55e2f55e6adf559bf4990aa433f5c202dc073d
adding myself as maintainer
2024-04-11 10:15:08 +05:30

33 lines
761 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "ananicy";
version = "unstable-2024-04-10";
src = fetchFromGitHub {
owner = "CachyOS";
repo = "ananicy-rules";
rev = "de55e2f55e6adf559bf4990aa433f5c202dc073d";
sha256 = "sha256-TWaOMVEeTLI67eG5BPyb+OSnz31QvTueQD2yfEEbTEo=";
};
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 johnrtitor ];
};
}