nixpkgs/pkgs/applications/graphics/menyoki/default.nix

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

55 lines
1.3 KiB
Nix
Raw Normal View History

2021-09-09 21:10:15 +00:00
{ fetchFromGitHub
, installShellFiles
, lib
, pkg-config
, rustPlatform
, stdenv
2022-07-28 04:12:03 +00:00
, withSixel ? false
, libsixel
, xorg
2021-11-17 02:05:36 +00:00
, AppKit
2021-09-09 21:10:15 +00:00
, withSki ? true
}:
rustPlatform.buildRustPackage rec {
pname = "menyoki";
2022-07-28 04:12:03 +00:00
version = "1.6.1";
2021-09-09 21:10:15 +00:00
src = fetchFromGitHub {
owner = "orhun";
repo = pname;
rev = "v${version}";
2022-07-28 04:12:03 +00:00
sha256 = "sha256-z0OpRnjVfU6vcyZsxkdD2x3l+a9GkDHZcFveGunDYww=";
2021-09-09 21:10:15 +00:00
};
2022-07-28 04:12:03 +00:00
cargoSha256 = "sha256-uSoyfgPlsHeUwnTHE49ErrlB65wcfl5dxn/YrW5EKZw=";
2021-09-09 21:10:15 +00:00
nativeBuildInputs = [ installShellFiles ]
++ lib.optional stdenv.isLinux pkg-config;
2022-07-28 04:12:03 +00:00
buildInputs = lib.optional withSixel libsixel
++ lib.optionals stdenv.isLinux (with xorg; [ libX11 libXrandr ])
2021-11-17 02:05:36 +00:00
++ lib.optional stdenv.isDarwin AppKit;
2021-09-09 21:10:15 +00:00
2021-11-16 13:35:09 +00:00
buildNoDefaultFeatures = !withSki;
2022-07-28 04:12:03 +00:00
buildFeatures = lib.optional withSixel "sixel";
checkFlags = [
# sometimes fails on lower end machines
"--skip=record::fps::tests::test_fps"
];
2021-09-09 21:10:15 +00:00
postInstall = ''
installManPage man/*
installShellCompletion completions/menyoki.{bash,fish,zsh}
'';
meta = with lib; {
description = "Screen{shot,cast} and perform ImageOps on the command line";
homepage = "https://menyoki.cli.rs/";
2021-10-23 01:26:15 +00:00
changelog = "https://github.com/orhun/menyoki/blob/v${version}/CHANGELOG.md";
2021-09-09 21:10:15 +00:00
license = licenses.gpl3Only;
maintainers = with maintainers; [ figsoda ];
};
}