nixpkgs/pkgs/applications/misc/qmetro/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
761 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, qmake4Hook, unzip, qt4 }:
2017-03-13 03:27:41 +03:00
stdenv.mkDerivation rec {
2022-03-07 14:37:20 +03:00
pname = "qmetro";
2017-03-13 03:27:41 +03:00
version = "0.7.1";
src = fetchurl {
2022-03-07 14:37:20 +03:00
url = "mirror://sourceforge/qmetro/qmetro-${version}.zip";
2017-03-13 03:27:41 +03:00
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 lib; {
homepage = "https://sourceforge.net/projects/qmetro/";
2017-03-13 03:27:41 +03:00
description = "Worldwide transit maps viewer";
license = licenses.gpl3;
maintainers = with maintainers; [ orivej ];
2017-03-13 03:27:41 +03:00
platforms = platforms.unix;
};
}