presenterm 0.4.1 -> 0.5.0 https://repology.org/project/presenterm/versions attrpath: presenterm Checking auto update branch... No auto update branch exists Old version 0.4.1" not present in master derivation file with contents: { lib , fetchFromGitHub , rustPlatform , libsixel , testers , presenterm , stdenv }: rustPlatform.buildRustPackage rec { pname = "presenterm"; version = "0.5.0"; src = fetchFromGitHub { owner = "mfontanini"; repo = "presenterm"; rev = "refs/tags/v${version}"; hash = "sha256-VAcK02dbtuTGn+lPu1vb/wAkroHuHqsU2KYHBiP2Org="; }; buildInputs = [ libsixel ]; cargoHash = "sha256-bufFiyqRsn4eG57bKn42p5cyX+Z7oiz/USZvg9YOvHA="; buildFeatures = [ "sixel" ]; # Skip test that currently doesn't work checkFlags = [ "--skip=execute::test::shell_code_execution" ]; passthru.tests.version = testers.testVersion { package = presenterm; command = "presenterm --version"; }; meta = with lib; { description = "A terminal based slideshow tool"; changelog = "https://github.com/mfontanini/presenterm/releases/tag/v${version}"; homepage = "https://github.com/mfontanini/presenterm"; license = licenses.bsd2; maintainers = with maintainers; [ mikaelfangel ]; mainProgram = "presenterm"; # Crashes at runtime on darwin with: # Library not loaded: .../out/lib/libsixel.1.dylib broken = stdenv.isDarwin; }; }