nixpkgs/pkgs/tools/graphics/lsix/default.nix

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

38 lines
850 B
Nix
Raw Normal View History

2021-07-18 10:12:41 +02:00
{ lib, stdenvNoCC, fetchFromGitHub, makeWrapper, imagemagick }:
stdenvNoCC.mkDerivation rec {
pname = "lsix";
2023-11-18 06:14:37 +01:00
version = "1.8.2";
2021-07-18 10:12:41 +02:00
src = fetchFromGitHub {
owner = "hackerb9";
repo = pname;
rev = version;
2023-11-18 06:14:37 +01:00
sha256 = "sha256-xlOlAfZonSo/RERt5WxPqMvppVrY5/Yhh7SgCCsYDQE=";
2021-07-18 10:12:41 +02:00
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
install -Dm755 lsix -t $out/bin
runHook postInstall
'';
postFixup = ''
wrapProgram $out/bin/lsix \
--prefix PATH : ${lib.makeBinPath [ imagemagick ]}
'';
meta = with lib; {
description = "Shows thumbnails in terminal using sixel graphics";
homepage = "https://github.com/hackerb9/lsix";
license = licenses.gpl3Only;
platforms = platforms.all;
maintainers = with maintainers; [ kidonng ];
2023-11-23 03:51:17 +01:00
mainProgram = "lsix";
2021-07-18 10:12:41 +02:00
};
}