Merge pull request #304012 from diniamo/fix-ananicy-rules-cachyos-hooks

ananicy-rules-cachyos: fix hooks and pname
This commit is contained in:
Artturi 2024-04-14 19:38:38 +03:00 committed by GitHub
commit e3a065c414
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 5 deletions

View File

@ -5019,6 +5019,12 @@
github = "DimitarNestorov";
githubId = 8790386;
};
diniamo = {
name = "diniamo";
email = "diniamo53@gmail.com";
github = "diniamo";
githubId = 55629891;
};
diogotcorreia = {
name = "Diogo Correia";
email = "me@diogotc.com";

View File

@ -1,7 +1,7 @@
{ 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 ];
};
}