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
924 B
Nix
Raw Normal View History

2021-07-18 10:12:41 +02:00
{ lib, stdenvNoCC, fetchFromGitHub, makeWrapper, imagemagick }:
2024-01-21 23:38:22 +01:00
stdenvNoCC.mkDerivation (finalAttrs: {
2021-07-18 10:12:41 +02:00
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";
2024-01-21 23:38:22 +01:00
repo = "lsix";
rev = finalAttrs.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 \
2024-01-21 23:40:28 +01:00
--prefix PATH : ${lib.makeBinPath [ (imagemagick.override { ghostscriptSupport = true;}) ]}
2021-07-18 10:12:41 +02:00
'';
meta = with lib; {
description = "Shows thumbnails in terminal using sixel graphics";
homepage = "https://github.com/hackerb9/lsix";
license = licenses.gpl3Only;
platforms = platforms.all;
2024-01-21 23:40:44 +01:00
maintainers = with maintainers; [ justinlime kidonng ];
2023-11-23 03:51:17 +01:00
mainProgram = "lsix";
2021-07-18 10:12:41 +02:00
};
2024-01-21 23:38:22 +01:00
})