[Packages] remove custom amdctl package, as it was added upstream

This commit is contained in:
Antoine Viallon 2023-09-21 14:18:16 +02:00
parent a4cbc0f621
commit 4c71747514
Signed by: aviallon
GPG key ID: 186FC35EDEB25716
2 changed files with 0 additions and 27 deletions

View file

@ -1,25 +0,0 @@
{
stdenv,
cmake,
fetchFromGitHub
}:
stdenv.mkDerivation rec {
name = "amdctl";
version = "0.11";
nativeBuildInputs = [
cmake
];
src = fetchFromGitHub {
owner = "kevinlekiller";
repo = "amdctl";
rev = "v${version}";
sha256 = "sha256-2wBk/9aAD7ARMGbcVxk+CzEvUf8U4RS4ZwTCj8cHNNo=";
};
installPhase = ''
mkdir -p $out/bin
cp amdctl $out/bin
'';
}