deploy-rs: adjust description
This commit is contained in:
parent
563fad90a5
commit
37d44151f3
@ -1,4 +1,10 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, rustPlatform, CoreServices, SystemConfiguration }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
, CoreServices
|
||||||
|
, SystemConfiguration
|
||||||
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "deploy-rs";
|
pname = "deploy-rs";
|
||||||
@ -8,17 +14,20 @@ rustPlatform.buildRustPackage rec {
|
|||||||
owner = "serokell";
|
owner = "serokell";
|
||||||
repo = "deploy-rs";
|
repo = "deploy-rs";
|
||||||
rev = "2a3c5f70eee04a465aa534d8bd4fcc9bb3c4a8ce";
|
rev = "2a3c5f70eee04a465aa534d8bd4fcc9bb3c4a8ce";
|
||||||
sha256 = "sha256-0w6iD3GSSQbIeSFVDzAAQZB+hDq670ZTms3d9XI+BtM=";
|
hash = "sha256-0w6iD3GSSQbIeSFVDzAAQZB+hDq670ZTms3d9XI+BtM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-Ki9/mYNLUq74v3u+e3aM139+06CTrvPLJv0O+qHL9dA=";
|
cargoHash = "sha256-Ki9/mYNLUq74v3u+e3aM139+06CTrvPLJv0O+qHL9dA=";
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices SystemConfiguration ];
|
buildInputs = lib.optionals stdenv.isDarwin [
|
||||||
|
CoreServices
|
||||||
|
SystemConfiguration
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = " A simple 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 = licenses.mpl20;
|
||||||
maintainers = [ maintainers.teutat3s ];
|
maintainers = with maintainers; [ teutat3s ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user