add overlays, pkgs
This commit is contained in:
parent
c7aef44265
commit
e21a47a2b5
34 changed files with 8812 additions and 2 deletions
17
utils/pkgs/howdy/ir-toggle.nix
Normal file
17
utils/pkgs/howdy/ir-toggle.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ stdenv, fetchFromGitHub, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "chicony-ir-toggle";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "PetePriority";
|
||||
repo = name;
|
||||
rev = "5758112ae7f502035d48f24123347ba37cdbdb34";
|
||||
sha256 = "1ihxkvhjbryhw5xjnw5a36f5w8nn4lnf07dzmzi6jzrn5ax131hw";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
preInstall = ''
|
||||
substituteInPlace ../CMakeLists.txt --replace /lib $out/lib
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue