mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
7e98e1d989
Diff: https://github.com/orhun/menyoki/compare/v1.6.1...v1.7.0 Changelog: https://github.com/orhun/menyoki/blob/v1.7.0/CHANGELOG.md
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{ fetchFromGitHub
|
|
, installShellFiles
|
|
, lib
|
|
, pkg-config
|
|
, rustPlatform
|
|
, stdenv
|
|
, withSixel ? false
|
|
, libsixel
|
|
, xorg
|
|
, AppKit
|
|
, withSki ? true
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "menyoki";
|
|
version = "1.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "orhun";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-owP3G1Rygraifdc4iPURQ1Es0msNhYZIlfrtj0CSU6Y=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-NtXjlGkX8AzSw98xHPymzdnTipMIunyDbpSr4eVowa0=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ]
|
|
++ lib.optional stdenv.isLinux pkg-config;
|
|
|
|
buildInputs = lib.optional withSixel libsixel
|
|
++ lib.optionals stdenv.isLinux (with xorg; [ libX11 libXrandr ])
|
|
++ lib.optional stdenv.isDarwin AppKit;
|
|
|
|
buildNoDefaultFeatures = !withSki;
|
|
buildFeatures = lib.optional withSixel "sixel";
|
|
|
|
checkFlags = [
|
|
# sometimes fails on lower end machines
|
|
"--skip=record::fps::tests::test_fps"
|
|
];
|
|
|
|
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/";
|
|
changelog = "https://github.com/orhun/menyoki/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|