mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
22 lines
590 B
Nix
22 lines
590 B
Nix
{ lib, fetchCrate, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "license-generator";
|
|
version = "1.3.0";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-jp7NQfDh512oThZbLj0NbqcH7rxV2R0kDv1wsiTNf/M=";
|
|
};
|
|
|
|
cargoHash = "sha256-pjH+i7uG3++NLIZ9y+wg4r+TutmZF2+uO501pdPApQs=";
|
|
|
|
meta = with lib; {
|
|
description = "Command-line tool for generating license files";
|
|
homepage = "https://github.com/azu/license-generator";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ loicreynier ];
|
|
mainProgram = "license-generator";
|
|
};
|
|
}
|