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-06-05 15:53:02 +00:00
|
|
|
version = "1.1.0";
|
2022-03-30 09:31:56 +00:00
|
|
|
|
2023-02-16 17:41:37 +00:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2024-06-05 15:53:02 +00:00
|
|
|
hash = "sha256-OIut6eE8cm7eBeHwuCUqSMDH48ZiJpF4vFaQ6wVLnfg=";
|
2023-02-16 17:41:37 +00:00
|
|
|
};
|
2022-03-30 09:31:56 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
cargoHash = "sha256-tv3Qx4JP2Lbl+k686mX7acabh7nyP1E9w7cQUnjh+pE=";
|
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
|
|
|
}
|