lol

presenterm: 0.11.0 -> 0.12.0 (#392983)

authored by

Gaétan Lepage and committed by
GitHub
774354ec 2545d691

+8 -8
+8 -8
pkgs/by-name/pr/presenterm/package.nix
··· 7 7 nix-update-script, 8 8 }: 9 9 10 - rustPlatform.buildRustPackage rec { 10 + rustPlatform.buildRustPackage (finalAttrs: { 11 11 pname = "presenterm"; 12 - version = "0.11.0"; 12 + version = "0.12.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "mfontanini"; 16 16 repo = "presenterm"; 17 - tag = "v${version}"; 18 - hash = "sha256-R2ATN495/sk+EMYs5BBxWk8nLO1ublWKfznn075/V5c="; 17 + tag = "v${finalAttrs.version}"; 18 + hash = "sha256-2k1YCzRoXt5Nmn+HH2qkdpP3S3+PJ5OVSVx29nYSdF8="; 19 19 }; 20 20 21 21 buildInputs = [ ··· 23 23 ]; 24 24 25 25 useFetchCargoVendor = true; 26 - cargoHash = "sha256-XXJGduSiPxlmcUyYp8QbTrPYI6NkoYxFA9cfsWgy1Es="; 26 + cargoHash = "sha256-M9VcwfG6NwUIvOkZKdoh97GVJEivkEmXhlApGQ1Hqds="; 27 27 28 28 checkFlags = [ 29 29 # failed to load .tmpEeeeaQ: No such file or directory (os error 2) ··· 33 33 nativeInstallCheckInputs = [ 34 34 versionCheckHook 35 35 ]; 36 - versionCheckProgramArg = [ "--version" ]; 36 + versionCheckProgramArg = "--version"; 37 37 doInstallCheck = true; 38 38 39 39 passthru = { ··· 42 42 43 43 meta = { 44 44 description = "Terminal based slideshow tool"; 45 - changelog = "https://github.com/mfontanini/presenterm/releases/tag/v${version}"; 45 + changelog = "https://github.com/mfontanini/presenterm/releases/tag/v${finalAttrs.version}"; 46 46 homepage = "https://github.com/mfontanini/presenterm"; 47 47 license = lib.licenses.bsd2; 48 48 maintainers = with lib.maintainers; [ mikaelfangel ]; 49 49 mainProgram = "presenterm"; 50 50 }; 51 - } 51 + })