evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / se / sendme / package.nix
blob376de9713c142ebcfb293e9ec76ab6fd79aa55dd
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , rustPlatform
5 , darwin
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "sendme";
10   version = "0.18.0";
12   src = fetchFromGitHub {
13     owner = "n0-computer";
14     repo = pname;
15     rev = "v${version}";
16     hash = "sha256-gPuzwJtQdQDFVuWYoH/TGSf+Fp++UvK9D7mL41p9eOk=";
17   };
19   cargoHash = "sha256-ML+USTwdMLyLcc3Fzu/eD7J7s7Sa1lEOZm/txjZv31E=";
21   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (
22     with darwin.apple_sdk.frameworks; [
23       SystemConfiguration
24     ]
25   );
27   meta = with lib; {
28     description = "Tool to send files and directories, based on iroh";
29     homepage = "https://iroh.computer/sendme";
30     license = with licenses; [ asl20 mit ];
31     maintainers = with maintainers; [ cameronfyfe ];
32     mainProgram = "sendme";
33   };