Merge pull request #45903 from kevincox/cargo-web-init

cargo-web: init at 0.6.15
This commit is contained in:
Kevin Cox 2018-09-01 14:44:17 +01:00 committed by GitHub
commit 1f073bc40b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, openssl, pkgconfig, rustPlatform }:
rustPlatform.buildRustPackage rec {
name = "cargo-web-${version}";
version = "0.6.15";
src = fetchFromGitHub {
owner = "koute";
repo = "cargo-web";
rev = version;
sha256 = "076g7cd9v53vi8xvd4kfsiyzw1m2hhd1lwlwcv2dx2s5vlw4dxzh";
};
cargoSha256 = "157av9zkirr00w9v11mh7yp8w36sy7rw6i80i5jmi0mgrdvcg5si";
nativeBuildInputs = [ openssl pkgconfig ];
meta = with stdenv.lib; {
description = "A Cargo subcommand for the client-side Web";
homepage = https://github.com/koute/cargo-web;
license = with licenses; [asl20 /* or */ mit];
maintainers = [ maintainers.kevincox ];
platforms = platforms.all;
};
}

View file

@ -7159,6 +7159,8 @@ with pkgs;
cargo-vendor = callPackage ../build-support/rust/cargo-vendor { };
cargo-web = callPackage ../development/tools/cargo-web { };
carnix = (callPackage ../build-support/rust/carnix.nix { }).carnix { };
defaultCrateOverrides = callPackage ../build-support/rust/default-crate-overrides.nix { };