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

View file

@ -26,6 +26,7 @@ self: super: {
salt-lint = super.callPackage ./salt-lint { };
#intel-compute-runtime-legacy1 = super.callPackage ./intel-compute-runtime-legacy1 { };
kubecrypt = super.callPackage ./kubecrypt { };
porecry = super.callPackage ./porecry { };
nerdfonts = super.nerdfonts.override {
fonts = [

6
flake.lock generated
View file

@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1720418205,
"narHash": "sha256-cPJoFPXU44GlhWg4pUk9oUPqurPlCFZ11ZQPk21GTPU=",
"lastModified": 1753694789,
"narHash": "sha256-cKgvtz6fKuK1Xr5LQW/zOUiAC0oSQoA9nOISB0pJZqM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "655a58a72a6601292512670343087c2d75d859c1",
"rev": "dc9637876d0dcc8c9e5e22986b857632effeb727",
"type": "github"
},
"original": {

View file

@ -46,6 +46,8 @@
# });
salt-lint = prev.callPackage ./salt-lint { };
#intel-compute-runtime-legacy1 = prev.callPackage ./intel-compute-runtime-legacy1 { };
kubecrypt = prev.callPackage ./kubecrypt { };
porecry = prev.callPackage ./porecry { };
};
};
}

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=";
}

View file

@ -6,6 +6,6 @@ let
in
pkgs.mkShell {
buildInputs = with pkgs; [
nerdfonts
porecry
];
}