2022-03-30 09:31:56 +00:00
|
|
|
{ lib, fetchCrate, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2023-02-16 17:41:37 +00:00
|
|
|
pname = "license-generator";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "1.3.0";
|
2022-03-30 09:31:56 +00:00
|
|
|
|
2023-02-16 17:41:37 +00:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2024-09-19 14:19:46 +00:00
|
|
|
hash = "sha256-jp7NQfDh512oThZbLj0NbqcH7rxV2R0kDv1wsiTNf/M=";
|
2023-02-16 17:41:37 +00:00
|
|
|
};
|
2022-03-30 09:31:56 +00:00
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
cargoHash = "sha256-pjH+i7uG3++NLIZ9y+wg4r+TutmZF2+uO501pdPApQs=";
|
2022-03-30 09:31:56 +00:00
|
|
|
|
2023-02-16 17:41:37 +00:00
|
|
|
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 ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "license-generator";
|
2023-02-16 17:41:37 +00:00
|
|
|
};
|
2022-03-30 09:31:56 +00:00
|
|
|
}
|