tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
imv: 1.2.0 -> 2.0.0
rnhmjoj
10 years ago
16d6eb45
d9739ebc
+7
-10
1 changed file
expand all
collapse all
unified
split
pkgs
applications
graphics
imv
default.nix
+7
-10
pkgs/applications/graphics/imv/default.nix
···
1
1
-
{ stdenv, fetchFromGitHub,
2
2
-
SDL2, freeimage
3
3
-
}:
1
1
+
{ stdenv, fetchgit, SDL2, SDL2_ttf, freeimage }:
4
2
5
3
stdenv.mkDerivation rec {
6
4
name = "imv-${version}";
7
7
-
version = "1.1.0";
5
5
+
version = "2.0.0";
8
6
9
9
-
src = fetchFromGitHub {
10
10
-
owner = "eXeC64";
11
11
-
repo = "imv";
12
12
-
rev = "4d1a6d581b70b25d9533c5c788aab6900ebf82bb";
13
13
-
sha256 = "1c5r4pqqypir8ymicxyn2k7mhq8nl88b3x6giaafd77ssjn0vz9r";
7
7
+
src = fetchgit {
8
8
+
url = "https://github.com/eXeC64/imv.git";
9
9
+
rev = "bc90a0adcc5b22d2bf0158333eb6dfb34c402d48";
10
10
+
sha256 = "1bzx57d9mcxw9s72pdbdbwq9pns946jl6p2g881z43w68gimlpw7";
14
11
};
15
12
16
16
-
buildInputs = [ SDL2 freeimage ];
13
13
+
buildInputs = [ SDL2 SDL2_ttf freeimage ];
17
14
18
15
configurePhase = "substituteInPlace Makefile --replace /usr $out";
19
16