Skip to content

Commit

Permalink
nix-simple-deploy: init at 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
misuzu authored and Jon committed Apr 25, 2020
1 parent d17a130 commit 8c0c24b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/tools/package-management/nix-simple-deploy/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, rustPlatform }:

rustPlatform.buildRustPackage rec {
pname = "nix-simple-deploy";
version = "0.1.1";

src = fetchFromGitHub {
owner = "misuzu";
repo = pname;
rev = version;
sha256 = "12g0sbgs2dfnk0agp1kagfi1yhk26ga98zygxxrjhjxrqb2n5w80";
};

cargoSha256 = "0svnz9r0lrmz333qpbpdddjd46vh9i74qchws8aifa2qwnqy0kmn";

meta = with stdenv.lib; {
description = "Deploy software or an entire NixOS system configuration to another NixOS system";
homepage = "https://github.com/misuzu/nix-simple-deploy";
license = with licenses; [ asl20 /* OR */ mit ];
platforms = platforms.all;
maintainers = with maintainers; [ misuzu ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25703,6 +25703,8 @@ in

nix-serve = callPackage ../tools/package-management/nix-serve { };

nix-simple-deploy = callPackage ../tools/package-management/nix-simple-deploy { };

nixfmt = haskell.lib.justStaticExecutables haskellPackages.nixfmt;

nixpkgs-fmt = callPackage ../tools/nix/nixpkgs-fmt { };
Expand Down

0 comments on commit 8c0c24b

Please sign in to comment.