meh: init at unstable-2015-04-11
This commit is contained in:
parent
16fff5ebce
commit
78a0bdfa98
27
pkgs/applications/graphics/meh/default.nix
Normal file
27
pkgs/applications/graphics/meh/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub, libX11, libXext, libjpeg, libpng, giflib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "meh-unstable-2015-04-11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jhawthorn";
|
||||
repo = "meh";
|
||||
rev = "4ab1c75f97cb70543db388b3ed99bcfb7e94c758";
|
||||
sha256 = "1j1n3m9hjhz4faryai97jq7cr6a322cqrd878gpkm9nrikap3bkk";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
make PREFIX=$out install
|
||||
'';
|
||||
|
||||
outputs = [ "out" "doc" ];
|
||||
|
||||
buildInputs = [ libXext libX11 libjpeg libpng giflib ];
|
||||
|
||||
meta = {
|
||||
description = "A minimal image viewer using raw XLib";
|
||||
homepage = http://www.johnhawthorn.com/meh/;
|
||||
license = stdenv.lib.licenses.mit;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -14496,6 +14496,8 @@ with pkgs;
|
||||
|
||||
mimms = callPackage ../applications/audio/mimms {};
|
||||
|
||||
meh = callPackage ../applications/graphics/meh {};
|
||||
|
||||
mirage = callPackage ../applications/graphics/mirage { };
|
||||
|
||||
mixxx = callPackage ../applications/audio/mixxx {
|
||||
|
Loading…
Reference in New Issue
Block a user