python312Packages.upass: 0.2.1 -> 0.3.0
[NixPkgs.git] / pkgs / servers / tarssh / default.nix
blobd2ce6e56c8c8ec59d255bf0ea97a8d5a5b6c373d
1 { fetchFromGitHub, rustPlatform, lib }:
3 rustPlatform.buildRustPackage rec {
4   pname = "tarssh";
5   version = "0.7.0";
7   src = fetchFromGitHub {
8     rev = "v${version}";
9     owner = "Freaky";
10     repo = pname;
11     sha256 = "sha256-AoKc8VF6rqYIsijIfgvevwu+6+suOO7XQCXXgAPNgLk=";
12   };
14   cargoHash = "sha256-w1MNsMSGONsAAjyvAHjio2K88j1sqyP1Aqmw3EMya+c=";
16   meta = with lib; {
17     description = "Simple SSH tarpit inspired by endlessh";
18     homepage = "https://github.com/Freaky/tarssh";
19     license = [ licenses.mit ];
20     maintainers = with maintainers; [ sohalt ];
21     platforms = platforms.unix ;
22     mainProgram = "tarssh";
23   };