added stuff from morph

This commit is contained in:
fleaz 2023-10-04 23:08:14 +02:00
commit cdf9817bc8
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083
9 changed files with 395 additions and 0 deletions

19
cpthook/default.nix Normal file
View file

@ -0,0 +1,19 @@
{ lib
, buildGoModule
, pkgs
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cpthook";
version = "0.7.1";
src = fetchFromGitHub {
owner = "fleaz";
repo = "CptHook";
hash = "sha256-SfqybLrTF9TDz4t/zPDojlZngVDxKGLTlNs9T34LfMU=";
rev = "v${version}";
};
vendorSha256 = "sha256-iKIH36pYK6x5ReCz6wiw5SWoiyMBfmr2K4ToWI/V6xQ=";
}