mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 05:14:45 +00:00
deploy-rs: unstable-2024-02-16 -> 0-unstable-2024-06-12
This commit is contained in:
parent
6eff982932
commit
93fc93def0
@ -1,33 +1,34 @@
|
|||||||
{ lib
|
{
|
||||||
, stdenv
|
lib,
|
||||||
, fetchFromGitHub
|
stdenv,
|
||||||
, rustPlatform
|
fetchFromGitHub,
|
||||||
, darwin
|
rustPlatform,
|
||||||
|
darwin,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage {
|
rustPlatform.buildRustPackage {
|
||||||
pname = "deploy-rs";
|
pname = "deploy-rs";
|
||||||
version = "unstable-2024-02-16";
|
version = "0-unstable-2024-06-12";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "serokell";
|
owner = "serokell";
|
||||||
repo = "deploy-rs";
|
repo = "deploy-rs";
|
||||||
rev = "0a0187794ac7f7a1e62cda3dabf8dc041f868790";
|
rev = "3867348fa92bc892eba5d9ddb2d7a97b9e127a8a";
|
||||||
hash = "sha256-dTGGw2y8wvfjr+J9CjQbfdulOq72hUG17HXVNxpH1yE=";
|
hash = "sha256-FaGrf7qwZ99ehPJCAwgvNY5sLCqQ3GDiE/6uLhxxwSY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-Vo/45cZM/sBAaoikhEwCvduhMQjurwSZwCjwrIQn7IA=";
|
cargoHash = "sha256-lsW810bktMzHZIbuN3pz9N+IUcjNtE5J2AuB/G6pGWI=";
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [
|
buildInputs = lib.optionals stdenv.isDarwin [
|
||||||
darwin.apple_sdk.frameworks.CoreServices
|
darwin.apple_sdk.frameworks.CoreServices
|
||||||
darwin.apple_sdk.frameworks.SystemConfiguration
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Multi-profile Nix-flake deploy tool";
|
description = "Multi-profile Nix-flake deploy tool";
|
||||||
homepage = "https://github.com/serokell/deploy-rs";
|
homepage = "https://github.com/serokell/deploy-rs";
|
||||||
license = licenses.mpl20;
|
license = lib.licenses.mpl20;
|
||||||
maintainers = with maintainers; [ teutat3s ];
|
maintainers = with lib.maintainers; [ teutat3s ];
|
||||||
mainProgram = "deploy";
|
mainProgram = "deploy";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user