evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ca / cargo-swift / package.nix
blob53aefb56374e76949e94439d5be76ca23ab6063d
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "cargo-swift";
8   version = "0.8.0";
10   src = fetchFromGitHub {
11     owner = "antoniusnaumann";
12     repo = "cargo-swift";
13     rev = "v${version}";
14     hash = "sha256-T8cIZJwnA3bFMIEezMrh5LRXV1SRCAVLanQm7rmc0sU=";
15   };
17   cargoHash = "sha256-qm1xSmCOF/ZHhwbCaB0Df+Rcvrh2imMPSCS1Hxl0TaI=";
19   meta = with lib; {
20     description = "Cargo plugin to easily build Swift packages from Rust code";
21     mainProgram = "cargo-swift";
22     homepage = "https://github.com/antoniusnaumann/cargo-swift";
23     license = with licenses; [ asl20 mit ];
24     maintainers = with maintainers; [ elliot ];
25   };