blob: fc6200797d866aa313a97b62321e7c2c7874bd90 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "gen-license";
version = "0.1.4";
src = fetchFromGitHub {
owner = "nexxeln";
repo = "license-generator";
rev = "${version}";
hash = "sha256-VOmt8JXd2+ykhkhupv/I4RfXz9P0eEesW3JGAoXStUI=";
};
cargoHash = "sha256-TEsWACxEs4eJ8rO4RnKJWpwT1KcDoBEGftHSJt4YXVw=";
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
meta = with lib; {
description = "Create licenses for your projects right from your terminal";
mainProgram = "gen-license";
homepage = "https://github.com/nexxeln/license-generator";
license = licenses.mit;
maintainers = [ maintainers.ryanccn ];
};
}
|