Skip to content

Commit b2a7158

Browse files
committed
Merge #279: Update nixpkgs
fabe4df Update nixpkgs (Jonas Nick) 4318d09 Remove lightning-charge and nanopos from the unstable_pkgs CI test (Jonas Nick) 8e268c5 Fetch from the nixpkgs repo instead of nixpkgs-channels (Jonas Nick) Pull request description: ACKs for top commit: erikarvstedt: ACK fabe4df Tree-SHA512: b8445b9aff0fb57efb17cb162b6a07419063bfd6b3b2f71752d126a44d3a6dee6e8ccbc318c2b57d079e8915f525de7dffd7c0856fc78e864bb108bf4be9576f
2 parents 7d370e9 + fabe4df commit b2a7158

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

ci/build.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ let
66
elementsd
77
hwi
88
joinmarket
9-
lightning-charge
109
lightning-loop
11-
nanopos
1210
];
1311
in
1412
pkgs.writeText "ci-pkgs" (pkgs.lib.concatMapStringsSep "\n" toString ciPkgs)

helper/fetch-channel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

33
rev=$1
4-
sha256=$(nix-prefetch-url --unpack https://github.com/nixos/nixpkgs-channels/archive/$rev.tar.gz)
4+
sha256=$(nix-prefetch-url --unpack https://github.com/nixos/nixpkgs/archive/$rev.tar.gz)
55
echo "rev = \"$rev\";"
66
echo "sha256 = \"$sha256\";"

pkgs/nixpkgs-pinned.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
let
22
fetch = { rev, sha256 }:
33
builtins.fetchTarball {
4-
url = "https://github.com/nixos/nixpkgs-channels/archive/${rev}.tar.gz";
4+
url = "https://github.com/nixos/nixpkgs/archive/${rev}.tar.gz";
55
inherit sha256;
66
};
77
in
88
{
99
# To update, run ../helper/fetch-channel REV
1010
nixpkgs = fetch {
11-
rev = "a9226f2b3a52fcbbc5587d2fa030729e714f40fe";
12-
sha256 = "0xlzkymfrkj7z7b6hwliq2zn6pbjw08zka0qyv5bbnkhnv16x1dh";
11+
rev = "e34208e10033315fddf6909d3ff68e2d3cf48a23";
12+
sha256 = "0ngkx5ny7bschmiwc5q9yza8fdwlc3zg47avsywwp8yn96k2cpmg";
1313
};
1414
nixpkgs-unstable = fetch {
15-
rev = "84d74ae9c9cbed73274b8e4e00be14688ffc93fe";
16-
sha256 = "0ww70kl08rpcsxb9xdx8m48vz41dpss4hh3vvsmswll35l158x0v";
15+
rev = "296793637b22bdb4d23b479879eba0a71c132a66";
16+
sha256 = "0j09yih9693w5vjx64ikfxyja1ha7pisygrwrpg3wfz3sssglg69";
1717
};
1818
}

0 commit comments

Comments
 (0)