2023-08-04 22:07:22 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, rustPlatform
|
|
|
|
, fetchCrate
|
|
|
|
, Security
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "gen-license";
|
|
|
|
version = "0.1.2";
|
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "sha256-YZcycLQ436cjr2YTT7TEyMdeLTOl9oEfa5x3lgnnYyo=";
|
|
|
|
};
|
|
|
|
|
|
|
|
cargoHash = "sha256-2PT20eoXxBPhGsmHlEEGE2ZDyhyrD7tFdwnn3khjKNo=";
|
|
|
|
|
|
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Create licenses for your projects right from your terminal";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "gen-license";
|
2023-08-04 22:07:22 +00:00
|
|
|
homepage = "https://github.com/nexxeln/license-generator";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.ryanccn ];
|
|
|
|
};
|
|
|
|
}
|