tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
yudit: init at 3.1.0
Doron Behar
1 year ago
e7baca71
a7e62e65
+32
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
yu
yudit
package.nix
+32
pkgs/by-name/yu/yudit/package.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
stdenv,
4
4
+
fetchurl,
5
5
+
xorg,
6
6
+
}:
7
7
+
8
8
+
stdenv.mkDerivation (finalAttrs: {
9
9
+
pname = "yudit";
10
10
+
version = "3.1.0";
11
11
+
12
12
+
src = fetchurl {
13
13
+
url = "https://www.yudit.org/download/yudit-${finalAttrs.version}.tar.gz";
14
14
+
hash = "sha256-oYgjTWEnNXaE9Sw9bGpLnY9avQ99tnJWa/RE73p85Vc=";
15
15
+
};
16
16
+
17
17
+
buildInputs = [
18
18
+
xorg.libX11
19
19
+
];
20
20
+
21
21
+
meta = {
22
22
+
description = "Free Unicode plain-text editor for Unix-like systems";
23
23
+
homepage = "https://www.yudit.org/";
24
24
+
changelog = "https://www.yudit.org/download/CHANGELOG.TXT";
25
25
+
mainProgram = "yudit";
26
26
+
license = lib.licenses.gpl2Plus;
27
27
+
maintainers = with lib.maintainers; [ doronbehar ];
28
28
+
# Might work on Darwin but currently fails, and upstream doesn't officially
29
29
+
# supports it.
30
30
+
platforms = lib.platforms.linux;
31
31
+
};
32
32
+
})