imv: 1.2.0 -> 2.0.0
This commit is contained in:
parent
d9739ebcc2
commit
16d6eb45f1
|
@ -1,19 +1,16 @@
|
||||||
{ stdenv, fetchFromGitHub,
|
{ stdenv, fetchgit, SDL2, SDL2_ttf, freeimage }:
|
||||||
SDL2, freeimage
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "imv-${version}";
|
name = "imv-${version}";
|
||||||
version = "1.1.0";
|
version = "2.0.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchgit {
|
||||||
owner = "eXeC64";
|
url = "https://github.com/eXeC64/imv.git";
|
||||||
repo = "imv";
|
rev = "bc90a0adcc5b22d2bf0158333eb6dfb34c402d48";
|
||||||
rev = "4d1a6d581b70b25d9533c5c788aab6900ebf82bb";
|
sha256 = "1bzx57d9mcxw9s72pdbdbwq9pns946jl6p2g881z43w68gimlpw7";
|
||||||
sha256 = "1c5r4pqqypir8ymicxyn2k7mhq8nl88b3x6giaafd77ssjn0vz9r";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ SDL2 freeimage ];
|
buildInputs = [ SDL2 SDL2_ttf freeimage ];
|
||||||
|
|
||||||
configurePhase = "substituteInPlace Makefile --replace /usr $out";
|
configurePhase = "substituteInPlace Makefile --replace /usr $out";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue