imv: init at 1.0.0
This commit is contained in:
parent
e769a56234
commit
03121cd5ac
28
pkgs/applications/graphics/imv/default.nix
Normal file
28
pkgs/applications/graphics/imv/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchFromGitHub,
|
||||
SDL2, freeimage
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "imv";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "eXeC64";
|
||||
repo = "imv";
|
||||
rev = "f2ce793d628e88825eff3364b293104cb0bdb582";
|
||||
sha256 = "1xqaqbfjgksbjmy1yy7q4sv5bak7w8va60xa426jzscy9cib2sgh";
|
||||
};
|
||||
|
||||
buildInputs = [ SDL2 freeimage ];
|
||||
|
||||
configurePhase = "substituteInPlace Makefile --replace /usr $out";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A command line image viewer for tiling window managers";
|
||||
homepage = https://github.com/eXeC64/imv;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ rnhmjoj ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -6589,6 +6589,8 @@ let
|
||||
libpng = libpng12;
|
||||
};
|
||||
|
||||
imv = callPackage ../applications/graphics/imv/default.nix { };
|
||||
|
||||
imlib2 = callPackage ../development/libraries/imlib2 { };
|
||||
|
||||
ijs = callPackage ../development/libraries/ijs { };
|
||||
|
Loading…
Reference in New Issue
Block a user