imv: init at 1.0.0

This commit is contained in:
rnhmjoj 2015-11-12 19:40:00 +01:00
parent e769a56234
commit 03121cd5ac
2 changed files with 30 additions and 0 deletions

View 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;
};
}

View File

@ -6589,6 +6589,8 @@ let
libpng = libpng12;
};
imv = callPackage ../applications/graphics/imv/default.nix { };
imlib2 = callPackage ../development/libraries/imlib2 { };
ijs = callPackage ../development/libraries/ijs { };