forked from mirrors/nixpkgs
parent
e329bb7877
commit
2dfe8e7a7d
21
pkgs/applications/graphics/gpicview/default.nix
Normal file
21
pkgs/applications/graphics/gpicview/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, fetchurl, intltool, pkgconfig, gtk2 }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gpicview-0.2.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/lxde/gpicview-0.2.4.tar.gz";
|
||||
sha256 = "1svcy1c8bgk0pl12yhyv16h2fl52x5vzzcv57z6qdcv5czgvgglr";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A simple and fast image viewer for X";
|
||||
homepage = http://lxde.sourceforge.net/gpicview/;
|
||||
repositories.git = git://lxde.git.sourceforge.net/gitroot/lxde/gpicview;
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
buildInputs = [ intltool pkgconfig gtk2 ];
|
||||
}
|
|
@ -7775,6 +7775,8 @@ let
|
|||
|
||||
goldendict = callPackage ../applications/misc/goldendict { };
|
||||
|
||||
gpicview = callPackage ../applications/graphics/gpicview { };
|
||||
|
||||
grass = import ../applications/misc/grass {
|
||||
inherit (xlibs) libXmu libXext libXp libX11 libXt libSM libICE libXpm
|
||||
libXaw libXrender;
|
||||
|
|
Loading…
Reference in a new issue