summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-04 22:46:56 +0100
committerGitHub <noreply@github.com>2022-12-04 22:46:56 +0100
commit37d44151f3141092079eff9c63daf622835ae440 (patch)
tree63d30551ea39a688bd18074eb390c1667dc0666a
parent563fad90a56cb5000282b06a170ea4b0b899f76f (diff)
downloadnixpkgs-37d44151f3141092079eff9c63daf622835ae440.tar
nixpkgs-37d44151f3141092079eff9c63daf622835ae440.tar.gz
nixpkgs-37d44151f3141092079eff9c63daf622835ae440.tar.bz2
nixpkgs-37d44151f3141092079eff9c63daf622835ae440.tar.lz
nixpkgs-37d44151f3141092079eff9c63daf622835ae440.tar.xz
nixpkgs-37d44151f3141092079eff9c63daf622835ae440.tar.zst
nixpkgs-37d44151f3141092079eff9c63daf622835ae440.zip
deploy-rs: adjust description
-rw-r--r--pkgs/tools/package-management/deploy-rs/default.nix19
1 files changed, 14 insertions, 5 deletions
diff --git a/pkgs/tools/package-management/deploy-rs/default.nix b/pkgs/tools/package-management/deploy-rs/default.nix
index 546ec70df38..0b85b3d29b2 100644
--- a/pkgs/tools/package-management/deploy-rs/default.nix
+++ b/pkgs/tools/package-management/deploy-rs/default.nix
@@ -1,4 +1,10 @@
-{ stdenv, lib, fetchFromGitHub, rustPlatform, CoreServices, SystemConfiguration }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, rustPlatform
+, CoreServices
+, SystemConfiguration
+}:
 
 rustPlatform.buildRustPackage rec {
   pname = "deploy-rs";
@@ -8,17 +14,20 @@ rustPlatform.buildRustPackage rec {
     owner = "serokell";
     repo = "deploy-rs";
     rev = "2a3c5f70eee04a465aa534d8bd4fcc9bb3c4a8ce";
-    sha256 = "sha256-0w6iD3GSSQbIeSFVDzAAQZB+hDq670ZTms3d9XI+BtM=";
+    hash = "sha256-0w6iD3GSSQbIeSFVDzAAQZB+hDq670ZTms3d9XI+BtM=";
   };
 
   cargoHash = "sha256-Ki9/mYNLUq74v3u+e3aM139+06CTrvPLJv0O+qHL9dA=";
 
-  buildInputs = lib.optionals stdenv.isDarwin [ CoreServices SystemConfiguration ];
+  buildInputs = lib.optionals stdenv.isDarwin [
+    CoreServices
+    SystemConfiguration
+  ];
 
   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";
     license = licenses.mpl20;
-    maintainers = [ maintainers.teutat3s ];
+    maintainers = with maintainers; [ teutat3s ];
   };
 }