diff --git a/README.md b/README.md index 1126095..f777e32 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ A personal collection of unusual things |`mspgcc-ti`|`9.3.1.11`|Open Source Compiler for MSP Microcontrollers|https://www.ti.com/tool/MSP430-GCC-OPENSOURCE| |`my-htop`|`5d778ea`|htop with sorting in tree mode fixed|https://htop.dev| |`nchess`|`0.0`|A curses based, UCI compatible, chess gui|https://github.com/spinojara/nchess| -|`ncps`|`0.0.14`|Nix binary cache proxy service -- with local caching and signing|https://github.com/kalbasit/ncps| +|`ncps`|`0.0.15`|Nix binary cache proxy service -- with local caching and signing|https://github.com/kalbasit/ncps| |`nvflash`|`5.833.0`|NVIDIA NVFlash is used to flash the graphics card BIOS on Ampere, Turing, Pascal and all older NVIDIA cards|https://www.techpowerup.com/download/nvidia-nvflash| |`pcr-oracle`|`0.5.4`|Predict TPM PCR values for future boot|https://github.com/okirch/pcr-oracle| |`photoview`|`v2.4.0`|Photo gallery for self-hosted personal servers|https://photoview.github.io| diff --git a/packages/ncps/default.nix b/packages/ncps/default.nix index ce0ea6a..b129662 100644 --- a/packages/ncps/default.nix +++ b/packages/ncps/default.nix @@ -1,12 +1,12 @@ pkgs: pkgs.buildGoModule rec { pname = "ncps"; - version = "0.0.14"; + version = "0.0.15"; src = (pkgs.fetchFromGitHub { owner = "kalbasit"; repo = pname; rev = "v${version}"; - hash = "sha256-/LFsOKzZ8p2MUyM5vg5JQR8g91KxbY3aaWbi198eULw="; + hash = "sha256-f1JXUkalDiZDJZ2uvJ4+5twTtYfBW7n8H7ta3chpP6w="; }).overrideAttrs (old: { postFetch = old.postFetch + '' cd $out @@ -16,7 +16,7 @@ pkgs: pkgs.buildGoModule rec { }); ldflags = [ "-s" "-w" ]; - vendorHash = "sha256-OIvCNOH9HvSP06JpfaMYXwf3teHhTw/HOeHrhEB7tNQ="; + vendorHash = "sha256-8PnrhLhFOrhVnP2uhVAQYCGfxRBzMYOGSJ7Vvvkrp2k="; postInstall = let inherit (pkgs.lib) getExe pipe; in