tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
onefetch: 2.9.1 -> 2.10.2
Sandro Jäckel
4 years ago
d09892f5
06607de5
+14
-6
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
onefetch
default.nix
+14
-6
pkgs/tools/misc/onefetch/default.nix
···
1
1
-
{ fetchFromGitHub, rustPlatform, lib, stdenv, fetchpatch
2
2
-
, CoreFoundation, libiconv, libresolv, Security }:
1
1
+
{ fetchFromGitHub
2
2
+
, rustPlatform
3
3
+
, lib
4
4
+
, stdenv
5
5
+
, fetchpatch
6
6
+
, CoreFoundation
7
7
+
, libiconv
8
8
+
, libresolv
9
9
+
, Security
10
10
+
}:
3
11
4
12
rustPlatform.buildRustPackage rec {
5
13
pname = "onefetch";
6
6
-
version = "2.9.1";
14
14
+
version = "2.10.2";
7
15
8
16
src = fetchFromGitHub {
9
17
owner = "o2sh";
10
18
repo = pname;
11
19
rev = "v${version}";
12
12
-
sha256 = "sha256-owa+HmzMXpLR7H1FssW4gQiVAQGJRXhcitgJj6pxJRc=";
20
20
+
sha256 = "sha256-lrRp01ZeK9bGn7L7SqAxJAU9qugpHnC06CWChhVPGGQ=";
13
21
};
14
22
15
15
-
cargoSha256 = "sha256-Bn2FlRESuW83ouGPiBwvGkIB0uCDDG0hdhRfRBks/0Q=";
23
23
+
cargoSha256 = "sha256-vNa1OF1x/MCTo9B4DTDZNWyHTsOl7Za3EgjnpsL/gWg=";
16
24
17
25
buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation libiconv libresolv Security ];
18
26
···
20
28
description = "Git repository summary on your terminal";
21
29
homepage = "https://github.com/o2sh/onefetch";
22
30
license = licenses.mit;
23
23
-
maintainers = with maintainers; [ Br1ght0ne kloenk ];
31
31
+
maintainers = with maintainers; [ Br1ght0ne kloenk SuperSandro2000 ];
24
32
};
25
33
}