From 0a6420cbac334fdf42ce88ff6f67624a5c3a2ecf Mon Sep 17 00:00:00 2001 From: Kevin Cox Date: Sat, 1 Sep 2018 14:20:58 +0100 Subject: cargo-web: init at 0.6.15 --- pkgs/development/tools/cargo-web/default.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pkgs/development/tools/cargo-web/default.nix (limited to 'pkgs/development/tools/cargo-web') diff --git a/pkgs/development/tools/cargo-web/default.nix b/pkgs/development/tools/cargo-web/default.nix new file mode 100644 index 00000000000..06d6697ef96 --- /dev/null +++ b/pkgs/development/tools/cargo-web/default.nix @@ -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; + }; +} -- cgit 1.4.1