3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/package-management/cargo-license/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
558 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchCrate }:
2019-06-23 23:20:57 +01:00
rustPlatform.buildRustPackage rec {
2019-08-31 12:41:23 +01:00
pname = "cargo-license";
version = "0.4.2";
2019-06-23 23:20:57 +01:00
src = fetchCrate {
inherit pname version;
sha256 = "sha256-rAHw5B/rK0N8myTzTyv/IUq3o+toWO5HOSaHQko2lPI=";
2019-06-23 23:20:57 +01:00
};
cargoSha256 = "sha256-DkINY3j0x0fUynMX8+pxNFwKI/YGqEv1M2a55FuKBGY=";
2019-06-23 23:20:57 +01:00
meta = with lib; {
description = "Cargo subcommand to see license of dependencies";
2019-06-25 14:31:55 +01:00
homepage = "https://github.com/onur/cargo-license";
2019-06-23 23:20:57 +01:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ basvandijk ];
};
}