nixpkgs/pkgs/tools/package-management/nix-simple-deploy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
898 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform, makeWrapper, openssh, nix-serve }:
2020-04-20 17:33:33 +02:00
rustPlatform.buildRustPackage rec {
pname = "nix-simple-deploy";
2021-08-09 19:51:27 +02:00
version = "0.2.2";
2020-04-20 17:33:33 +02:00
src = fetchFromGitHub {
owner = "misuzu";
repo = pname;
rev = version;
2021-08-09 19:51:27 +02:00
sha256 = "1qq4fbsd2mvxblsggwbnh88mj18f3vrfzv1kgc7a92pfiwxznq8r";
2020-04-20 17:33:33 +02:00
};
2021-08-09 19:51:27 +02:00
cargoSha256 = "1r6dl7qipbyyvjcd3l9ynawjln1g1qzvw5za6nyjcf41dzv48m8x";
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
wrapProgram "$out/bin/nix-simple-deploy" \
--prefix PATH : "${lib.makeBinPath [ openssh nix-serve ]}"
'';
2020-04-20 17:33:33 +02:00
meta = with lib; {
2020-04-20 17:33:33 +02:00
description = "Deploy software or an entire NixOS system configuration to another NixOS system";
homepage = "https://github.com/misuzu/nix-simple-deploy";
platforms = platforms.unix;
2020-04-20 17:33:33 +02:00
license = with licenses; [ asl20 /* OR */ mit ];
maintainers = with maintainers; [ misuzu ];
};
}