Added porecry package
This commit is contained in:
parent
2344fc3edb
commit
04a956bad8
5 changed files with 24 additions and 4 deletions
|
@ -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
6
flake.lock
generated
|
@ -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": {
|
||||
|
|
|
@ -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
17
porecry/default.nix
Normal 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=";
|
||||
}
|
2
test.nix
2
test.nix
|
@ -6,6 +6,6 @@ let
|
|||
in
|
||||
pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
nerdfonts
|
||||
porecry
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue