blob: 229414b14f6822302778a519b2bf3244ad9090c0 (
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
33
34
35
36
37
38
39
40
41
42
43
|
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, darwin
, testers
, nix-update-script
, committed
}:
let
version = "1.0.20";
in
rustPlatform.buildRustPackage {
pname = "committed";
inherit version;
src = fetchFromGitHub {
owner = "crate-ci";
repo = "committed";
rev = "refs/tags/v${version}";
hash = "sha256-HqZYxV2YjnK7Q3A7B6yVFXME0oc3DZ4RfMkDGa2IQxA=";
};
cargoHash = "sha256-AmAEGVWq6KxLtiHDGIFVcoP1Wck8z+P9mnDy0SSSJNM=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Security ];
passthru = {
tests.version = testers.testVersion { package = committed; };
updateScript = nix-update-script { };
};
meta = {
homepage = "https://github.com/crate-ci/committed";
changelog = "https://github.com/crate-ci/committed/blob/v${version}/CHANGELOG.md";
description = "Nitpicking commit history since beabf39";
mainProgram = "committed";
license = [
lib.licenses.asl20 # or
lib.licenses.mit
];
maintainers = [ lib.maintainers.pigeonf ];
};
}
|