commit
482c63e502
22
pkgs/applications/graphics/sxiv/default.nix
Normal file
22
pkgs/applications/graphics/sxiv/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, fetchurl, libX11, imlib2, giflib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "sxiv-1.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/muennich/sxiv/archive/v1.1.tar.gz";
|
||||||
|
name = "sxiv-1.1.tar.gz";
|
||||||
|
sha256 = "0gsqwa1yacsig7ycjrw0sjyrsa9mynfzzbwm1vp2bgk4s9hb08kx";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libX11 imlib2 giflib ];
|
||||||
|
|
||||||
|
prePatch = ''sed -i "s@/usr/local@$out@" Makefile'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Simple X Image Viewer";
|
||||||
|
homepage = "https://github.com/muennich/sxiv";
|
||||||
|
license = "GPLv2+";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -7911,6 +7911,8 @@ let
|
|||||||
|
|
||||||
st = callPackage ../applications/misc/st { };
|
st = callPackage ../applications/misc/st { };
|
||||||
|
|
||||||
|
sxiv = callPackage ../applications/graphics/sxiv { };
|
||||||
|
|
||||||
bittorrentSync = callPackage ../applications/networking/bittorrentsync { };
|
bittorrentSync = callPackage ../applications/networking/bittorrentsync { };
|
||||||
|
|
||||||
dropbox = callPackage ../applications/networking/dropbox { };
|
dropbox = callPackage ../applications/networking/dropbox { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user