forked from mirrors/nixpkgs
doomseeker: cleanup
This commit is contained in:
parent
2678e0ce02
commit
427d00ee36
|
@ -2,16 +2,17 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "doomseeker-1.0";
|
name = "doomseeker-1.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://doomseeker.drdteam.org/files/${name}_src.tar.bz2";
|
url = "http://doomseeker.drdteam.org/files/${name}_src.tar.bz2";
|
||||||
sha256 = "172ybxg720r64hp6aah0hqvxklqv1cf8v7kwx0ng5ap0h20jydbw";
|
sha256 = "172ybxg720r64hp6aah0hqvxklqv1cf8v7kwx0ng5ap0h20jydbw";
|
||||||
};
|
};
|
||||||
|
|
||||||
cmakeFlags = ''
|
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ];
|
||||||
-DCMAKE_BUILD_TYPE=Release
|
|
||||||
'';
|
|
||||||
|
|
||||||
buildInputs = [ cmake pkgconfig qt4 zlib bzip2 ];
|
buildInputs = [ qt4 zlib bzip2 ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
@ -27,4 +28,3 @@ stdenv.mkDerivation rec {
|
||||||
maintainers = with stdenv.lib.maintainers; [ MP2E ];
|
maintainers = with stdenv.lib.maintainers; [ MP2E ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue