nixpkgs/pkgs/applications/graphics/meh/default.nix

28 lines
677 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchFromGitHub, libX11, libXext, libjpeg, libpng, giflib }:
2017-03-18 22:34:47 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2017-03-18 22:34:47 +00:00
name = "meh-unstable-2015-04-11";
src = fetchFromGitHub {
owner = "jhawthorn";
repo = "meh";
rev = "4ab1c75f97cb70543db388b3ed99bcfb7e94c758";
sha256 = "1j1n3m9hjhz4faryai97jq7cr6a322cqrd878gpkm9nrikap3bkk";
};
installPhase = ''
make PREFIX=$out install
'';
outputs = [ "out" "man" ];
2017-03-18 22:34:47 +00:00
buildInputs = [ libXext libX11 libjpeg libpng giflib ];
meta = {
description = "A minimal image viewer using raw XLib";
homepage = "https://www.johnhawthorn.com/meh/";
2021-01-15 13:21:58 +00:00
license = lib.licenses.mit;
platforms = lib.platforms.linux;
2017-03-18 22:34:47 +00:00
};
}