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