mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 22:20:51 +00:00
Merge pull request #66324 from xaverdh/notepadqq-qt-fix
notepadqq: use qt5's mkDerivation
This commit is contained in:
commit
d914581523
|
@ -1,9 +1,8 @@
|
||||||
{ stdenv, fetchFromGitHub, pkgconfig, which, qtbase, qtsvg, qttools, qtwebkit}:
|
{ mkDerivation, lib, fetchFromGitHub, pkgconfig, which, qtbase, qtsvg, qttools, qtwebkit }:
|
||||||
|
|
||||||
let
|
mkDerivation rec {
|
||||||
|
pname = "notepadqq";
|
||||||
version = "1.4.8";
|
version = "1.4.8";
|
||||||
in stdenv.mkDerivation {
|
|
||||||
name = "notepadqq-${version}";
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "notepadqq";
|
owner = "notepadqq";
|
||||||
repo = "notepadqq";
|
repo = "notepadqq";
|
||||||
|
@ -24,13 +23,19 @@ in stdenv.mkDerivation {
|
||||||
export LRELEASE="lrelease"
|
export LRELEASE="lrelease"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
dontWrapQtApps = true;
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
wrapQtApp $out/bin/notepadqq
|
||||||
|
'';
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
homepage = https://notepadqq.com/;
|
homepage = https://notepadqq.com/;
|
||||||
description = "Notepad++-like editor for the Linux desktop";
|
description = "Notepad++-like editor for the Linux desktop";
|
||||||
license = stdenv.lib.licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with stdenv.lib.maintainers; [ rszibele ];
|
maintainers = [ maintainers.rszibele ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue