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
hacompanion/default.nix Normal file
View file

@ -0,0 +1,19 @@
{ lib
, buildGoModule
, pkgs
, fetchFromGitHub
}:
buildGoModule rec {
pname = "hacompanion";
version = "1.0.5";
src = fetchFromGitHub {
owner = "tobias-kuendig";
repo = "hacompanion";
hash = "sha256-wNxE2TrO/TPVzwyn+LRfu6v9mUf3CeB5vdNNJM4rMAI=";
rev = "v${version}";
};
vendorSha256 = "sha256-ZZ8nxN+zUeFhSXyoHLMgzeFllnIkKdoVnbVK5KjrLEQ=";
}