Merge pull request #307922 from Mic92/nixos-anywhere

nixos-anywhere: 1.1.2 -> 1.2.0
This commit is contained in:
Jörg Thalheim 2024-04-30 10:37:32 +02:00 committed by GitHub
commit fa79a2370a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,11 +12,11 @@
, gnused
, lib
, makeWrapper
, sshpass
}:
let
runtimeDeps = [
gitMinimal # for git flakes
rsync
nix
coreutils
curl # when uploading tarballs
@ -24,16 +24,18 @@ let
gawk
findutils
gnused # needed by ssh-copy-id
sshpass # used to provide password for ssh-copy-id
rsync # used to upload extra-files
];
in
stdenv.mkDerivation (finalAttrs: {
pname = "nixos-anywhere";
version = "1.1.2";
version = "1.2.0";
src = fetchFromGitHub {
owner = "numtide";
repo = "nixos-anywhere";
rev = finalAttrs.version;
hash = "sha256-JzgZnHQ4Bknh1ebE4iMVzR3cWZG+8k7MRy0X7cNSnBE=";
hash = "sha256-u3PFJup/XOz2MBhvqCzm94iH6Z4nrE0KmBgT/OnNDqU=";
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''