Added porecry package

This commit is contained in:
fleaz 2025-07-30 16:22:45 +02:00
parent 2344fc3edb
commit 04a956bad8
5 changed files with 24 additions and 4 deletions

17
porecry/default.nix Normal file
View file

@ -0,0 +1,17 @@
{ buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "kubecryupt";
version = "0.1.10";
src = fetchFromGitHub {
owner = "sebidude";
repo = "porecry";
hash = "sha256-6ogHL9W1SL7+YwXCpbpgAG2VyTXQk3bIw7+ov7YOJII=";
rev = "v${version}";
};
vendorHash = "sha256-Nn/6Evf6LPCIIzuHbDFXwuaH70KnROBfGpoqAtYZLFg=";
}