summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics/imv
diff options
context:
space:
mode:
authorrnhmjoj <micheleguerinirocco@me.com>2016-02-13 05:13:49 +0100
committerrnhmjoj <micheleguerinirocco@me.com>2016-02-13 05:13:49 +0100
commit16d6eb45f18fe94885d25a729313a2387765d60f (patch)
tree2c63cd7c2a6d7dabed0d7d00232ab519c8cc47e8 /pkgs/applications/graphics/imv
parentd9739ebcc21a778eb0971361943126ab4b3043c9 (diff)
imv: 1.2.0 -> 2.0.0
Diffstat (limited to 'pkgs/applications/graphics/imv')
-rw-r--r--pkgs/applications/graphics/imv/default.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/applications/graphics/imv/default.nix b/pkgs/applications/graphics/imv/default.nix
index 9298c764d286..5be5a8b161db 100644
--- a/pkgs/applications/graphics/imv/default.nix
+++ b/pkgs/applications/graphics/imv/default.nix
@@ -1,19 +1,16 @@
-{ stdenv, fetchFromGitHub,
- SDL2, freeimage
-}:
+{ stdenv, fetchgit, SDL2, SDL2_ttf, freeimage }:
stdenv.mkDerivation rec {
name = "imv-${version}";
- version = "1.1.0";
+ version = "2.0.0";
- src = fetchFromGitHub {
- owner = "eXeC64";
- repo = "imv";
- rev = "4d1a6d581b70b25d9533c5c788aab6900ebf82bb";
- sha256 = "1c5r4pqqypir8ymicxyn2k7mhq8nl88b3x6giaafd77ssjn0vz9r";
+ src = fetchgit {
+ url = "https://github.com/eXeC64/imv.git";
+ rev = "bc90a0adcc5b22d2bf0158333eb6dfb34c402d48";
+ sha256 = "1bzx57d9mcxw9s72pdbdbwq9pns946jl6p2g881z43w68gimlpw7";
};
- buildInputs = [ SDL2 freeimage ];
+ buildInputs = [ SDL2 SDL2_ttf freeimage ];
configurePhase = "substituteInPlace Makefile --replace /usr $out";