Skip to content

Commit

Permalink
sxiv: 1.3.2 -> 24
Browse files Browse the repository at this point in the history
  • Loading branch information
dywedir authored and obadz committed Mar 4, 2018
1 parent fffd3c4 commit 9e1c2ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/applications/graphics/sxiv/default.nix
@@ -1,16 +1,16 @@
{ stdenv, fetchFromGitHub, libX11, imlib2, giflib, libexif, conf ? null }:
{ stdenv, fetchFromGitHub, libXft, imlib2, giflib, libexif, conf ? null }:

with stdenv.lib;

stdenv.mkDerivation rec {
name = "sxiv-${version}";
version = "1.3.2";
version = "24";

src = fetchFromGitHub {
owner = "muennich";
repo = "sxiv";
rev = "v${version}";
sha256 = "1f4gz1qjhb44bbb3q5fqk439zyipkwnr19zhg89yq2pgmzzzqr2h";
sha256 = "020n1bdxbzqncprh8a4rnjzc4frp335yxbqh5w6dr970f7n5qm8d";
};

postUnpack = ''
Expand All @@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
configFile = optionalString (conf!=null) (builtins.toFile "config.def.h" conf);
preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";

buildInputs = [ libX11 imlib2 giflib libexif ];
buildInputs = [ libXft imlib2 giflib libexif ];

postInstall = ''
mkdir -p $out/share/applications/
Expand Down

0 comments on commit 9e1c2ba

Please sign in to comment.