nixpkgs/pkgs/applications/misc/navipowm/default.nix
Lluís Batlle i Rossell f093c8fb18 Making the navipowm store some files in it's $out/share, needed to make it work.
Nevertheless it still looks for the ini file in the same directory as the executable.

svn path=/nixpkgs/trunk/; revision=23350
2010-08-22 12:07:50 +00:00

32 lines
774 B
Nix

{ stdenv, fetchurl, qt4 }:
stdenv.mkDerivation rec {
name = "navipowm-0.2.4";
src = fetchurl {
url = mirror://sourceforge/navipowm/NaviPOWM-0.2.4.tar.gz;
sha256 = "1kdih8kwpgcgfh6l6njkr9gq2j5hv39xvzmzgvhip553kn6bss7b";
};
configurePhase = ''
cd Qt/KDevelop
qmake
'';
installPhase = ''
ensureDir $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 ];
meta = {
homepage = http://navipowm.sourceforge.net/;
description = "Car navigation system";
license = "GPLv2";
maintainers = with stdenv.lib.maintainers; [ viric ];
platforms = with stdenv.lib.platforms; linux;
};
}