tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
marker: 2020.04.04.2 -> 2023.05.02
aleksana
2 years ago
d8cd7961
5c31944c
+9
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
editors
marker
default.nix
+9
-5
pkgs/applications/editors/marker/default.nix
···
9
, gtk3
10
, gtksourceview
11
, gtkspell3
12
-
, webkitgtk
13
, pandoc
14
}:
15
16
stdenv.mkDerivation rec {
17
pname = "marker";
18
-
version = "2020.04.04.2";
19
20
src = fetchFromGitHub {
21
owner = "fabiocolacio";
22
repo = "Marker";
23
rev = version;
24
fetchSubmodules = true;
25
-
sha256 = "sha256-wLR1FQqlLA02ed/JoAcxRHhIVua1FibAee1PC2zOPOM=";
26
};
27
28
nativeBuildInputs = [
···
37
gtk3
38
gtksourceview
39
gtkspell3
40
-
webkitgtk
41
pandoc
42
];
43
0
0
0
0
44
meta = with lib; {
45
homepage = "https://fabiocolacio.github.io/Marker/";
46
-
description = "Markdown editor for the Linux desktop";
47
maintainers = with maintainers; [ trepetti ];
48
license = licenses.gpl3Plus;
49
platforms = platforms.linux;
···
9
, gtk3
10
, gtksourceview
11
, gtkspell3
12
+
, webkitgtk_4_1
13
, pandoc
14
}:
15
16
stdenv.mkDerivation rec {
17
pname = "marker";
18
+
version = "2023.05.02";
19
20
src = fetchFromGitHub {
21
owner = "fabiocolacio";
22
repo = "Marker";
23
rev = version;
24
fetchSubmodules = true;
25
+
sha256 = "sha256-HhDhigQ6Aqo8R57Yrf1i69sM0feABB9El5R5OpzOyB0=";
26
};
27
28
nativeBuildInputs = [
···
37
gtk3
38
gtksourceview
39
gtkspell3
40
+
webkitgtk_4_1
41
pandoc
42
];
43
44
+
postPatch = ''
45
+
meson rewrite kwargs set project / version '${version}'
46
+
'';
47
+
48
meta = with lib; {
49
homepage = "https://fabiocolacio.github.io/Marker/";
50
+
description = "Markdown editor for the Linux desktop made with GTK3";
51
maintainers = with maintainers; [ trepetti ];
52
license = licenses.gpl3Plus;
53
platforms = platforms.linux;