Skip to content

Commit

Permalink
ncps: 0.0.14 -> 0.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
42LoCo42 committed Dec 14, 2024
1 parent 85e0cc4 commit a1a5821
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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|
Expand Down
6 changes: 3 additions & 3 deletions packages/ncps/default.nix
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit a1a5821

Please sign in to comment.