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
pkg-config,
11
}:
12
13
-
stdenv.mkDerivation rec {
14
pname = "xst";
15
version = "0.10.0";
16
17
src = fetchFromGitHub {
18
owner = "gnotclub";
19
-
repo = pname;
20
-
rev = "v${version}";
21
-
sha256 = "sha256-2pXR9U2tTBd0lyeQ3BjnXW+Ne9aUQg/+rnpmYPPG06A=";
22
};
23
24
nativeBuildInputs = [
···
40
runHook postInstall
41
'';
42
43
-
meta = with lib; {
44
homepage = "https://github.com/gnotclub/xst";
45
description = "Simple terminal fork that can load config from Xresources";
46
mainProgram = "xst";
47
-
license = licenses.mit;
48
-
maintainers = [ maintainers.vyp ];
49
-
platforms = platforms.linux;
50
};
51
-
}
···
10
pkg-config,
11
}:
12
13
+
stdenv.mkDerivation (finalAttrs: {
14
pname = "xst";
15
version = "0.10.0";
16
17
src = fetchFromGitHub {
18
owner = "gnotclub";
19
+
repo = "xst";
20
+
tag = "v${finalAttrs.version}";
21
+
hash = "sha256-2pXR9U2tTBd0lyeQ3BjnXW+Ne9aUQg/+rnpmYPPG06A=";
22
};
23
24
nativeBuildInputs = [
···
40
runHook postInstall
41
'';
42
43
+
meta = {
44
homepage = "https://github.com/gnotclub/xst";
45
description = "Simple terminal fork that can load config from Xresources";
46
mainProgram = "xst";
47
+
license = lib.licenses.mit;
48
+
maintainers = [ lib.maintainers.vyp ];
49
+
platforms = lib.platforms.linux;
50
};
51
+
})