Unverified Commit be13e678 authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

Merge pull request #318010 from Mic92/nixos-anywhere

nixos-anywhere: 1.2.0 -> 1.3.0
parents 9e4e5d96 d88d0acd
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
, fetchFromGitHub
, openssh
, gitMinimal
, rsync
, nix
, coreutils
, curl
@@ -13,6 +12,7 @@
, lib
, makeWrapper
, sshpass
, gnutar
}:
let
  runtimeDeps = [
@@ -25,17 +25,17 @@ let
    findutils
    gnused # needed by ssh-copy-id
    sshpass # used to provide password for ssh-copy-id
    rsync # used to upload extra-files
    gnutar # used to upload extra-files
  ];
in
stdenv.mkDerivation (finalAttrs: {
  pname = "nixos-anywhere";
  version = "1.2.0";
  version = "1.3.0";
  src = fetchFromGitHub {
    owner = "numtide";
    repo = "nixos-anywhere";
    rev = finalAttrs.version;
    hash = "sha256-u3PFJup/XOz2MBhvqCzm94iH6Z4nrE0KmBgT/OnNDqU=";
    hash = "sha256-AdSrhQhJb9ObCgM1iXnoIBBl+6cjRbuTST4Lt02AP5Q=";
  };
  nativeBuildInputs = [ makeWrapper ];
  installPhase = ''