nixpkgs/pkgs/development/libraries/qmltermwidget/default.nix

43 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, qtbase, qtquick1, qmake, qtmultimedia, utmp, fetchpatch }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
version = "2018-11-24";
pname = "qmltermwidget-unstable";
2018-01-14 17:47:42 +00:00
src = fetchFromGitHub {
repo = "qmltermwidget";
owner = "Swordfish90";
rev = "48274c75660e28d44af7c195e79accdf1bd44963";
sha256 = "028nb1xp84jmakif5mmzx52q3rsjwckw27jdpahyaqw7j7i5znq6";
};
buildInputs = [ qtbase qtquick1 qtmultimedia ]
++ lib.optional stdenv.isDarwin utmp;
2017-06-02 15:40:19 +00:00
nativeBuildInputs = [ qmake ];
2021-01-07 15:03:21 +00:00
patches = [
(fetchpatch {
name = "fix-missing-includes.patch";
url = "https://github.com/Swordfish90/qmltermwidget/pull/27/commits/485f8d6d841b607ba49e55a791f7f587e4e193bc.diff";
sha256 = "186s8pv3642vr4lxsds919h0y2vrkl61r7wqq9mc4a5zk5vprinj";
})
];
postPatch = ''
substituteInPlace qmltermwidget.pro \
--replace '$$[QT_INSTALL_QML]' "/$qtQmlPrefix/"
'';
installFlags = [ "INSTALL_ROOT=$(out)" ];
2015-03-24 15:31:27 +00:00
dontWrapQtApps = true;
meta = {
description = "A QML port of qtermwidget";
homepage = "https://github.com/Swordfish90/qmltermwidget";
license = lib.licenses.gpl2;
platforms = with lib.platforms; linux ++ darwin;
maintainers = with lib.maintainers; [ skeidel ];
};
}