2022-03-15 13:09:20 +00:00
|
|
|
{ lib, fetchCrate, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2023-02-11 15:59:44 +00:00
|
|
|
pname = "license-generator";
|
|
|
|
version = "1.0.0";
|
2022-03-15 13:09:20 +00:00
|
|
|
|
2023-02-11 15:59:44 +00:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
|
|
|
hash = "sha256-ijA/AqLeQ9/XLeCriWNUA6R3iKyq+QPDH5twSvqFmEA=";
|
|
|
|
};
|
2022-03-15 13:09:20 +00:00
|
|
|
|
2023-02-11 15:59:44 +00:00
|
|
|
cargoHash = "sha256-FfkCV4anPHElGGIOYDSzHam5ohVGpOgtu/nM0aw9HzU=";
|
2022-03-15 13:09:20 +00:00
|
|
|
|
2023-02-11 15:59:44 +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 ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "license-generator";
|
2023-02-11 15:59:44 +00:00
|
|
|
};
|
2022-03-15 13:09:20 +00:00
|
|
|
}
|