Merge pull request #222365 from SFrijters/tiv-add-wrapper
This commit is contained in:
commit
f97fdd6e51
1 changed files with 13 additions and 1 deletions
|
@ -1,4 +1,9 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, imagemagick }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, makeWrapper
|
||||||
|
, imagemagick
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "tiv";
|
pname = "tiv";
|
||||||
|
@ -11,12 +16,19 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "sha256-mCgybL4af19zqECN1pBV+WnxMq2ZtlK5GDTQO3u9CK0=";
|
sha256 = "sha256-mCgybL4af19zqECN1pBV+WnxMq2ZtlK5GDTQO3u9CK0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
buildInputs = [ imagemagick ];
|
buildInputs = [ imagemagick ];
|
||||||
|
|
||||||
makeFlags = [ "prefix=$(out)" ];
|
makeFlags = [ "prefix=$(out)" ];
|
||||||
|
|
||||||
preConfigure = "cd src/main/cpp";
|
preConfigure = "cd src/main/cpp";
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
wrapProgram $out/bin/tiv \
|
||||||
|
--prefix PATH : ${lib.makeBinPath [ imagemagick ]}
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/stefanhaustein/TerminalImageViewer";
|
homepage = "https://github.com/stefanhaustein/TerminalImageViewer";
|
||||||
description = "Small C++ program to display images in a (modern) terminal using RGB ANSI codes and unicode block graphics characters";
|
description = "Small C++ program to display images in a (modern) terminal using RGB ANSI codes and unicode block graphics characters";
|
||||||
|
|
Loading…
Reference in a new issue