mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
27 lines
674 B
Nix
27 lines
674 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-swift";
|
|
version = "0.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "antoniusnaumann";
|
|
repo = "cargo-swift";
|
|
rev = "v${version}";
|
|
hash = "sha256-T8cIZJwnA3bFMIEezMrh5LRXV1SRCAVLanQm7rmc0sU=";
|
|
};
|
|
|
|
cargoHash = "sha256-qm1xSmCOF/ZHhwbCaB0Df+Rcvrh2imMPSCS1Hxl0TaI=";
|
|
|
|
meta = with lib; {
|
|
description = "Cargo plugin to easily build Swift packages from Rust code";
|
|
mainProgram = "cargo-swift";
|
|
homepage = "https://github.com/antoniusnaumann/cargo-swift";
|
|
license = with licenses; [ asl20 mit ];
|
|
maintainers = with maintainers; [ elliot ];
|
|
};
|
|
}
|