Skip to content

Commit 126f259

Browse files
committed
nix: update overlays
1 parent 63f540c commit 126f259

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

modules/overlays/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{ ... }:
22
{
33
nixpkgs.overlays = [
4-
(import ./bun.nix)
4+
(import ./pnpm.nix)
55
];
66
}

modules/overlays/pnpm.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
final: prev: {
22
pnpm = prev.pnpm.overrideAttrs (oldAttrs: rec {
3-
version = "10.17.1";
3+
version = "10.18.0";
44
src = prev.fetchurl {
55
url = "https://registry.npmjs.org/pnpm/-/pnpm-${version}.tgz";
6-
hash = "sha256-oeATP2gBwTA5rkEwnl5afRBYo6Hh7dAgpJRKg8U2jQQ=";
6+
hash = "sha256-OWej7+KQnfMF/sS4M6ME38oXw4C2u3dnL02sTyzdN4g=";
77
};
88
});
99
}

0 commit comments

Comments
 (0)