nixpkgs/pkgs/development/tools/cargo-web/default.nix

29 lines
818 B
Nix
Raw Normal View History

2019-01-24 13:35:15 -08:00
{ stdenv, fetchFromGitHub, openssl, perl, pkgconfig, rustPlatform
2019-06-19 10:56:22 -07:00
, CoreServices, Security
}:
2018-09-01 06:20:58 -07:00
rustPlatform.buildRustPackage rec {
2019-06-03 03:20:26 -07:00
pname = "cargo-web";
version = "0.6.25";
2018-09-01 06:20:58 -07:00
src = fetchFromGitHub {
owner = "koute";
2019-06-03 03:20:26 -07:00
repo = pname;
2018-09-01 06:20:58 -07:00
rev = version;
2019-06-03 03:20:26 -07:00
sha256 = "0q77bryc7ap8gb4rzp9xk8ngqwxh106qn7899g30lwxycnyii0mf";
2018-09-01 06:20:58 -07:00
};
2019-06-03 03:20:26 -07:00
cargoSha256 = "1f4sj260q4rlzbajwimya1yhh90hmmbhr47yfg9i8xcv5cg0cqjn";
2018-09-01 06:20:58 -07:00
2019-01-24 13:35:15 -08:00
nativeBuildInputs = [ openssl perl pkgconfig ];
2019-06-19 10:56:22 -07:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices Security ];
2018-09-01 06:20:58 -07:00
meta = with stdenv.lib; {
description = "A Cargo subcommand for the client-side Web";
homepage = https://github.com/koute/cargo-web;
2019-06-03 03:20:26 -07:00
license = with licenses; [ asl20 /* or */ mit ];
2018-09-01 06:20:58 -07:00
maintainers = [ maintainers.kevincox ];
platforms = platforms.all;
};
}