Use finalAttrs

+8 -8
+4 -4
pkgs/by-name/ta/tacent/package.nix
··· 6 stdenv, 7 }: 8 9 - stdenv.mkDerivation rec { 10 pname = "tacent"; 11 version = "0.8.18"; 12 13 src = fetchFromGitHub { 14 owner = "bluescan"; 15 repo = "tacent"; 16 - tag = version; 17 hash = "sha256-z8VuJS8OaVw5CeO/udvBEmcURKIy1oWVYUv6Ai8lTI8="; 18 }; 19 ··· 29 containers, image loading/saving, image quantization/filtering, command-line parsing, etc. 30 ''; 31 homepage = "https://github.com/bluescan/tacent"; 32 - changelog = "https://github.com/bluescan/tacent/releases/tag/v${version}"; 33 license = lib.licenses.isc; 34 maintainers = with lib.maintainers; [ PopeRigby ]; 35 platforms = lib.platforms.linux; 36 }; 37 - }
··· 6 stdenv, 7 }: 8 9 + stdenv.mkDerivation (finalAttrs: { 10 pname = "tacent"; 11 version = "0.8.18"; 12 13 src = fetchFromGitHub { 14 owner = "bluescan"; 15 repo = "tacent"; 16 + tag = finalAttrs.version; 17 hash = "sha256-z8VuJS8OaVw5CeO/udvBEmcURKIy1oWVYUv6Ai8lTI8="; 18 }; 19 ··· 29 containers, image loading/saving, image quantization/filtering, command-line parsing, etc. 30 ''; 31 homepage = "https://github.com/bluescan/tacent"; 32 + changelog = "https://github.com/bluescan/tacent/releases/tag/v${finalAttrs.version}"; 33 license = lib.licenses.isc; 34 maintainers = with lib.maintainers; [ PopeRigby ]; 35 platforms = lib.platforms.linux; 36 }; 37 + })
+4 -4
pkgs/by-name/ta/tacentview/package.nix
··· 12 zenity, 13 }: 14 15 - stdenv.mkDerivation rec { 16 pname = "tacentview"; 17 version = "1.0.46"; 18 19 src = fetchFromGitHub { 20 owner = "bluescan"; 21 repo = "tacentview"; 22 - tag = "v${version}"; 23 hash = "sha256-d4A26p1hmkYEZ+h6kRbHHr4QmAc3PMe3qYdkeKIRGkU="; 24 }; 25 ··· 61 meta = { 62 description = "Image and texture viewer"; 63 homepage = "https://github.com/bluescan/tacentview"; 64 - changelog = "https://github.com/bluescan/tacentview/releases/tag/v${version}"; 65 license = lib.licenses.isc; 66 maintainers = with lib.maintainers; [ PopeRigby ]; 67 mainProgram = "tacentview"; 68 platforms = with lib.platforms; linux ++ windows; 69 }; 70 - }
··· 12 zenity, 13 }: 14 15 + stdenv.mkDerivation (finalAttrs: { 16 pname = "tacentview"; 17 version = "1.0.46"; 18 19 src = fetchFromGitHub { 20 owner = "bluescan"; 21 repo = "tacentview"; 22 + tag = "v${finalAttrs.version}"; 23 hash = "sha256-d4A26p1hmkYEZ+h6kRbHHr4QmAc3PMe3qYdkeKIRGkU="; 24 }; 25 ··· 61 meta = { 62 description = "Image and texture viewer"; 63 homepage = "https://github.com/bluescan/tacentview"; 64 + changelog = "https://github.com/bluescan/tacentview/releases/tag/v${finalAttrs.version}"; 65 license = lib.licenses.isc; 66 maintainers = with lib.maintainers; [ PopeRigby ]; 67 mainProgram = "tacentview"; 68 platforms = with lib.platforms; linux ++ windows; 69 }; 70 + })