tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gitoxide: 0.8.4 -> 0.10.0
figsoda
4 years ago
4c121d16
a6a0964e
+17
-7
1 changed file
expand all
collapse all
unified
split
pkgs
applications
version-management
gitoxide
default.nix
+17
-7
pkgs/applications/version-management/gitoxide/default.nix
···
1
1
-
{ lib, stdenv, rustPlatform, cmake, fetchFromGitHub, pkg-config, openssl
2
2
-
, libiconv, Security, SystemConfiguration }:
1
1
+
{ lib
2
2
+
, rustPlatform
3
3
+
, fetchFromGitHub
4
4
+
, cmake
5
5
+
, pkg-config
6
6
+
, stdenv
7
7
+
, libiconv
8
8
+
, Security
9
9
+
, SystemConfiguration
10
10
+
, openssl
11
11
+
}:
3
12
4
13
rustPlatform.buildRustPackage rec {
5
14
pname = "gitoxide";
6
6
-
version = "0.8.4";
15
15
+
version = "0.10.0";
7
16
8
17
src = fetchFromGitHub {
9
18
owner = "Byron";
10
19
repo = "gitoxide";
11
20
rev = "v${version}";
12
12
-
sha256 = "WH8YiW1X7TkURjncm0OefxrZhnhGHaGLwxRNxe17g/0=";
21
21
+
sha256 = "sha256-c29gmmkIOyS+HNq2kv53yq+sdEDmQbSmcvVGcd55/hk=";
13
22
};
14
23
15
15
-
cargoSha256 = "eTPJMYl9m81o4PJKfpDs61KmehSvKnY+bgybEodOhAM=";
24
24
+
cargoSha256 = "sha256-oc7XpiOZj4bfqdwrEHj/CzNtWzYWFkgMJOySJNgxAGQ=";
16
25
17
26
nativeBuildInputs = [ cmake pkg-config ];
18
27
buildInputs = if stdenv.isDarwin
19
19
-
then [ libiconv Security SystemConfiguration]
28
28
+
then [ libiconv Security SystemConfiguration ]
20
29
else [ openssl ];
21
30
22
31
# Needed to get openssl-sys to use pkg-config.
···
25
34
meta = with lib; {
26
35
description = "A command-line application for interacting with git repositories";
27
36
homepage = "https://github.com/Byron/gitoxide";
37
37
+
changelog = "https://github.com/Byron/gitoxide/blob/v${version}/CHANGELOG.md";
28
38
license = with licenses; [ mit /* or */ asl20 ];
29
29
-
maintainers = [ maintainers.syberant ];
39
39
+
maintainers = with maintainers; [ syberant ];
30
40
};
31
41
}