mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
[Packages] remove custom amdctl package, as it was added upstream
This commit is contained in:
parent
a4cbc0f621
commit
4c71747514
2 changed files with 0 additions and 27 deletions
|
|
@ -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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue