nixpkgs/pkgs/by-name/pr/presenterm/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.2 KiB
Nix
Raw Normal View History

2023-12-06 09:29:01 +00:00
{ lib
, fetchFromGitHub
, rustPlatform
, libsixel
, testers
, presenterm
, stdenv
2023-12-06 09:29:01 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "presenterm";
version = "0.7.0";
src = fetchFromGitHub {
owner = "mfontanini";
repo = "presenterm";
2023-12-06 09:29:01 +00:00
rev = "refs/tags/v${version}";
hash = "sha256-I5L+Wygj9ApQu/5fm55okwNbyxOiF++7BDl765MLnjY=";
};
2023-12-06 09:29:01 +00:00
buildInputs = [
libsixel
];
cargoHash = "sha256-w1uXCH8Ybf78EPTIKrhPlPHAnNBp1iiBpFJHY98IPWY=";
2023-11-24 19:07:26 +00:00
# Crashes at runtime on darwin with:
# Library not loaded: .../out/lib/libsixel.1.dylib
buildFeatures = lib.optionals (!stdenv.isDarwin) [ "sixel" ];
2023-12-06 09:29:01 +00:00
2023-11-24 19:07:26 +00:00
# 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 = "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";
};
}