mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
32 lines
826 B
Nix
32 lines
826 B
Nix
{ stdenv, fetchurl, qt4, qmake4Hook }:
|
|
stdenv.mkDerivation rec {
|
|
name = "navipowm-0.2.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/navipowm/NaviPOWM-0.2.4.tar.gz";
|
|
sha256 = "1kdih8kwpgcgfh6l6njkr9gq2j5hv39xvzmzgvhip553kn6bss7b";
|
|
};
|
|
|
|
preConfigure = ''
|
|
cd Qt/KDevelop
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/share/${name}/Icons
|
|
cp bin/NaviPOWM $out/bin
|
|
cp ../../common/Config/navipowm.ini $out/share/${name}
|
|
cp ../../common/Images/* $out/share/${name}
|
|
'';
|
|
|
|
buildInputs = [ qt4 ];
|
|
nativeBuildInputs = [ qmake4Hook ];
|
|
|
|
meta = {
|
|
homepage = "http://navipowm.sourceforge.net/";
|
|
description = "Car navigation system";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with stdenv.lib.maintainers; [ ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|