blob: b23169f058e2f7da31753e35a8889e97f0552190 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
{
lib,
stdenv,
rustPlatform,
fetchFromGitHub,
pkg-config,
libgit2,
darwin,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
pname = "gex";
version = "0.6.4";
src = fetchFromGitHub {
owner = "Piturnah";
repo = "gex";
rev = "v${version}";
hash = "sha256-Xer7a3UtFIv3idchI7DfZ5u6qgDW/XFWi5ihtcREXqo=";
};
nativeBuildInputs = [ pkg-config ];
passthru.updateScript = nix-update-script { };
buildInputs =
[
libgit2
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.Security
];
env = {
LIBGIT2_NO_VENDOR = 1;
};
cargoPatches = [
./patch-libgit2.patch
];
cargoHash = "sha256-GEQ4Zv14Dzo9mt1YIDmXEBHLPD6G0/O1ggmUTnSYD+k=";
meta = with lib; {
description = "Git Explorer: cross-platform git workflow improvement tool inspired by Magit";
homepage = "https://github.com/Piturnah/gex";
changelog = "https://github.com/Piturnah/gex/releases/tag/${src.rev}";
license = with licenses; [
asl20 # or
mit
];
maintainers = with maintainers; [
azd325
bot-wxt1221
evanrichter
piturnah
];
mainProgram = "gex";
};
}
|