diff --git a/pkgs/rustypaste-cli/default.nix b/pkgs/rustypaste-cli/default.nix index bafb485..009da54 100644 --- a/pkgs/rustypaste-cli/default.nix +++ b/pkgs/rustypaste-cli/default.nix @@ -3,23 +3,23 @@ rustPlatform, fetchFromGitHub, ... -}: - rustPlatform.buildRustPackage rec { - pname = "rustypaste-cli"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "orhun"; - repo = pname; - rev = "v${version}"; - sha256 = "sha256-GPQEo9nYcw2Xowh0f2fqj4Ya5kUApB4GSdaSZkVb4R0="; - }; - - cargoHash = "sha256-uwAiNrpObirtxGXaNz3prXFIygcf0b8t/Z9N99Gcrtk="; - - meta = with lib; { - description = "A CLI tool for rustypaste "; - homepage = "https://github.com/orhun/rustypaste-cli"; - license = licenses.mit; - maintainers = with maintainers; [ notohh ]; - } - } \ No newline at end of file +}: +rustPlatform.buildRustPackage rec { + pname = "rustypaste-cli"; + version = "0.3.0"; + src = fetchFromGitHub { + owner = "orhun"; + repo = pname; + rev = "v${version}"; + sha256 = "sha256-GPQEo9nYcw2Xowh0f2fqj4Ya5kUApB4GSdaSZkVb4R0="; + }; + + cargoHash = "sha256-uwAiNrpObirtxGXaNz3prXFIygcf0b8t/Z9N99Gcrtk="; + + meta = with lib; { + description = "A CLI tool for rustypaste "; + homepage = "https://github.com/orhun/rustypaste-cli"; + license = licenses.mit; + maintainers = with maintainers; [notohh]; + }; +}