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 { }; salt-lint = super.callPackage ./salt-lint { };
#intel-compute-runtime-legacy1 = super.callPackage ./intel-compute-runtime-legacy1 { }; #intel-compute-runtime-legacy1 = super.callPackage ./intel-compute-runtime-legacy1 { };
kubecrypt = super.callPackage ./kubecrypt { }; kubecrypt = super.callPackage ./kubecrypt { };
porecry = super.callPackage ./porecry { };
nerdfonts = super.nerdfonts.override { nerdfonts = super.nerdfonts.override {
fonts = [ fonts = [

6
flake.lock generated
View file

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

View file

@ -46,6 +46,8 @@
# }); # });
salt-lint = prev.callPackage ./salt-lint { }; salt-lint = prev.callPackage ./salt-lint { };
#intel-compute-runtime-legacy1 = prev.callPackage ./intel-compute-runtime-legacy1 { }; #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 in
pkgs.mkShell { pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
nerdfonts porecry
]; ];
} }