tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
xst: modernize
Acid Bong
7 months ago
9810b360
fab0654a
+9
-9
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
xs
xst
package.nix
+9
-9
pkgs/by-name/xs/xst/package.nix
···
10
10
pkg-config,
11
11
}:
12
12
13
13
-
stdenv.mkDerivation rec {
13
13
+
stdenv.mkDerivation (finalAttrs: {
14
14
pname = "xst";
15
15
version = "0.10.0";
16
16
17
17
src = fetchFromGitHub {
18
18
owner = "gnotclub";
19
19
-
repo = pname;
20
20
-
rev = "v${version}";
21
21
-
sha256 = "sha256-2pXR9U2tTBd0lyeQ3BjnXW+Ne9aUQg/+rnpmYPPG06A=";
19
19
+
repo = "xst";
20
20
+
tag = "v${finalAttrs.version}";
21
21
+
hash = "sha256-2pXR9U2tTBd0lyeQ3BjnXW+Ne9aUQg/+rnpmYPPG06A=";
22
22
};
23
23
24
24
nativeBuildInputs = [
···
40
40
runHook postInstall
41
41
'';
42
42
43
43
-
meta = with lib; {
43
43
+
meta = {
44
44
homepage = "https://github.com/gnotclub/xst";
45
45
description = "Simple terminal fork that can load config from Xresources";
46
46
mainProgram = "xst";
47
47
-
license = licenses.mit;
48
48
-
maintainers = [ maintainers.vyp ];
49
49
-
platforms = platforms.linux;
47
47
+
license = lib.licenses.mit;
48
48
+
maintainers = [ lib.maintainers.vyp ];
49
49
+
platforms = lib.platforms.linux;
50
50
};
51
51
-
}
51
51
+
})