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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
689 B
Nix
Raw Normal View History

2021-01-15 14:21:58 +01:00
{ lib, stdenv, fetchFromGitHub, libX11, libXext, libjpeg, libpng, giflib }:
2017-03-18 23:34:47 +01:00
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
pname = "meh";
version = "unstable-2018-10-22";
2017-03-18 23:34:47 +01:00
src = fetchFromGitHub {
owner = "jhawthorn";
repo = "meh";
rev = "69f653a1f16d11b12e5b600e808a740898f3223e";
sha256 = "sha256-srSwoaajW4H4+kmE7NQAqVz9d/1q2XQ5ayQaOcGwzI0=";
2017-03-18 23:34:47 +01:00
};
installFlags = [ "PREFIX=${placeholder "out"}" ];
2017-03-18 23:34:47 +01:00
outputs = [ "out" "man" ];
2017-03-18 23:34:47 +01: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 14:21:58 +01:00
license = lib.licenses.mit;
platforms = lib.platforms.linux;
2017-03-18 23:34:47 +01:00
};
}