mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
33 lines
791 B
Nix
33 lines
791 B
Nix
{ stdenv, fetchurl, qmake4Hook, unzip, qt4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${project}-${version}";
|
|
project = "qmetro";
|
|
version = "0.7.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${project}/${name}.zip";
|
|
sha256 = "1zdj87lzcr43gr2h05g17z31pd22n5kxdwbvx7rx656rmhv0sjq5";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake4Hook unzip ];
|
|
|
|
buildInputs = [ qt4 ];
|
|
|
|
postPatch = ''
|
|
sed -e 's#Exec=/usr/bin/qmetro#Exec=qmetro#' -i rc/qmetro.desktop
|
|
echo 'LIBS += -lz' >> qmetro.pro
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://sourceforge.net/projects/qmetro/;
|
|
description = "Worldwide transit maps viewer";
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|