depot/third_party/nixpkgs/pkgs/applications/graphics/meh/default.nix
Default email 2ea8997135 Project import generated by Copybara.
GitOrigin-RevId: 5bc8b980b9178ef9a4bb622320cf34e59ea2ea10
2021-08-23 10:02:39 +02:00

26 lines
689 B
Nix

{ lib, stdenv, fetchFromGitHub, libX11, libXext, libjpeg, libpng, giflib }:
stdenv.mkDerivation {
pname = "meh";
version = "unstable-2018-10-22";
src = fetchFromGitHub {
owner = "jhawthorn";
repo = "meh";
rev = "69f653a1f16d11b12e5b600e808a740898f3223e";
sha256 = "sha256-srSwoaajW4H4+kmE7NQAqVz9d/1q2XQ5ayQaOcGwzI0=";
};
installFlags = [ "PREFIX=${placeholder "out"}" ];
outputs = [ "out" "man" ];
buildInputs = [ libXext libX11 libjpeg libpng giflib ];
meta = {
description = "A minimal image viewer using raw XLib";
homepage = "https://www.johnhawthorn.com/meh/";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
};
}