tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lsd2dsl: modernize
Nikolay Korotkiy
5 months ago
0bd5ea3e
e8cb992c
+8
-8
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ls
lsd2dsl
package.nix
+8
-8
pkgs/by-name/ls/lsd2dsl/package.nix
···
16
16
qt6,
17
17
}:
18
18
19
19
-
stdenv.mkDerivation rec {
19
19
+
stdenv.mkDerivation (finalAttrs: {
20
20
pname = "lsd2dsl";
21
21
version = "0.6.0";
22
22
23
23
src = fetchFromGitHub {
24
24
owner = "nongeneric";
25
25
repo = "lsd2dsl";
26
26
-
rev = "v${version}";
26
26
+
tag = "v${finalAttrs.version}";
27
27
hash = "sha256-0UsxDNpuWpBrfjh4q3JhZnOyXhHatSa3t/cApiG2JzM=";
28
28
};
29
29
···
63
63
exec = "lsd2dsl-qtgui";
64
64
desktopName = "lsd2dsl";
65
65
genericName = "lsd2dsl";
66
66
-
comment = meta.description;
66
66
+
comment = finalAttrs.meta.description;
67
67
categories = [
68
68
"Dictionary"
69
69
"FileTools"
···
75
75
install -Dm755 console/lsd2dsl gui/lsd2dsl-qtgui -t $out/bin
76
76
'';
77
77
78
78
-
meta = with lib; {
78
78
+
meta = {
79
79
homepage = "https://rcebits.com/lsd2dsl/";
80
80
description = "Lingvo dictionaries decompiler";
81
81
longDescription = ''
82
82
A decompiler for ABBYY Lingvo’s proprietary dictionaries.
83
83
'';
84
84
-
license = licenses.mit;
85
85
-
maintainers = with maintainers; [ sikmir ];
86
86
-
platforms = platforms.unix;
84
84
+
license = lib.licenses.mit;
85
85
+
maintainers = with lib.maintainers; [ sikmir ];
86
86
+
platforms = lib.platforms.unix;
87
87
};
88
88
-
}
88
88
+
})