blob: 99139437b4a7ce325ab3c1d37c2079d4e57ecb7f (
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
|
{ lib
, stdenv
, fetchFromGitHub
, openssl
, pkg-config
, libiconv
, darwin
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "gitrs";
version = "v0.3.6";
src = fetchFromGitHub {
owner = "mccurdyc";
repo = pname;
rev = version;
hash = "sha256-+43XJroPNWmdUC6FDL84rZWrJm5fzuUXfpDkAMyVQQg=";
};
cargoHash = "sha256-2TXm1JTs0Xkid91A5tdi6Kokm0K1NOPmlocwFXv48uw=";
nativeBuildInputs = [
pkg-config # for openssl
];
buildInputs = [ openssl.dev ]
++ lib.optionals stdenv.hostPlatform.isDarwin [
libiconv
darwin.apple_sdk.frameworks.Security
darwin.apple_sdk.frameworks.SystemConfiguration
];
meta = with lib; {
description = "Simple, opinionated, tool, written in Rust, for declaratively managing Git repos on your machine";
homepage = "https://github.com/mccurdyc/gitrs";
license = licenses.mit;
maintainers = with maintainers; [ mccurdyc ];
mainProgram = "gitrs";
};
}
|