tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Use finalAttrs
PopeRigby
1 year ago
992670d2
53ecadce
+8
-8
2 changed files
expand all
collapse all
unified
split
pkgs
by-name
ta
tacent
package.nix
tacentview
package.nix
+4
-4
pkgs/by-name/ta/tacent/package.nix
···
6
6
stdenv,
7
7
}:
8
8
9
9
-
stdenv.mkDerivation rec {
9
9
+
stdenv.mkDerivation (finalAttrs: {
10
10
pname = "tacent";
11
11
version = "0.8.18";
12
12
13
13
src = fetchFromGitHub {
14
14
owner = "bluescan";
15
15
repo = "tacent";
16
16
-
tag = version;
16
16
+
tag = finalAttrs.version;
17
17
hash = "sha256-z8VuJS8OaVw5CeO/udvBEmcURKIy1oWVYUv6Ai8lTI8=";
18
18
};
19
19
···
29
29
containers, image loading/saving, image quantization/filtering, command-line parsing, etc.
30
30
'';
31
31
homepage = "https://github.com/bluescan/tacent";
32
32
-
changelog = "https://github.com/bluescan/tacent/releases/tag/v${version}";
32
32
+
changelog = "https://github.com/bluescan/tacent/releases/tag/v${finalAttrs.version}";
33
33
license = lib.licenses.isc;
34
34
maintainers = with lib.maintainers; [ PopeRigby ];
35
35
platforms = lib.platforms.linux;
36
36
};
37
37
-
}
37
37
+
})
+4
-4
pkgs/by-name/ta/tacentview/package.nix
···
12
12
zenity,
13
13
}:
14
14
15
15
-
stdenv.mkDerivation rec {
15
15
+
stdenv.mkDerivation (finalAttrs: {
16
16
pname = "tacentview";
17
17
version = "1.0.46";
18
18
19
19
src = fetchFromGitHub {
20
20
owner = "bluescan";
21
21
repo = "tacentview";
22
22
-
tag = "v${version}";
22
22
+
tag = "v${finalAttrs.version}";
23
23
hash = "sha256-d4A26p1hmkYEZ+h6kRbHHr4QmAc3PMe3qYdkeKIRGkU=";
24
24
};
25
25
···
61
61
meta = {
62
62
description = "Image and texture viewer";
63
63
homepage = "https://github.com/bluescan/tacentview";
64
64
-
changelog = "https://github.com/bluescan/tacentview/releases/tag/v${version}";
64
64
+
changelog = "https://github.com/bluescan/tacentview/releases/tag/v${finalAttrs.version}";
65
65
license = lib.licenses.isc;
66
66
maintainers = with lib.maintainers; [ PopeRigby ];
67
67
mainProgram = "tacentview";
68
68
platforms = with lib.platforms; linux ++ windows;
69
69
};
70
70
-
}
70
70
+
})