mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
66d7126255
Since years I'm not maintaining anything of the list below other than some updates when I needed them for some reason. Other people is doing that maintenance on my behalf so I better take me out but for very few packages. Finally!
32 lines
822 B
Nix
32 lines
822 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;
|
|
};
|
|
}
|