9 rustPlatform.buildRustPackage rec {
10 pname = "gen-license";
13 src = fetchFromGitHub {
15 repo = "license-generator";
17 hash = "sha256-VOmt8JXd2+ykhkhupv/I4RfXz9P0eEesW3JGAoXStUI=";
20 cargoHash = "sha256-TEsWACxEs4eJ8rO4RnKJWpwT1KcDoBEGftHSJt4YXVw=";
22 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
23 darwin.apple_sdk.frameworks.Security
27 description = "Create licenses for your projects right from your terminal";
28 mainProgram = "gen-license";
29 homepage = "https://github.com/nexxeln/license-generator";
30 license = licenses.mit;
31 maintainers = [ maintainers.ryanccn ];