Skip to content

Commit

Permalink
notepadqq: 1.4.8 -> 2.0.0-beta (#202075)
Browse files Browse the repository at this point in the history
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
  • Loading branch information
LunNova and SuperSandro2000 committed Nov 21, 2022
1 parent e27dcca commit 57dcd38
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
28 changes: 23 additions & 5 deletions pkgs/applications/editors/notepadqq/default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,40 @@
{ mkDerivation, lib, fetchFromGitHub, pkg-config, which, qtbase, qtsvg, qttools, qtwebkit }:
{ mkDerivation
, lib
, fetchFromGitHub
, pkg-config
, which
, libuchardet
, qtbase
, qtsvg
, qttools
, qtwebengine
, qtwebsockets
}:

mkDerivation rec {
pname = "notepadqq";
version = "1.4.8";
# shipping a beta build as there's no proper release which supports qtwebengine
version = "2.0.0-beta";

src = fetchFromGitHub {
owner = "notepadqq";
repo = "notepadqq";
rev = "v${version}";
sha256 = "0lbv4s7ng31dkznzbkmp2cvkqglmfj6lv4mbg3r410fif2nrva7k";
sha256 = "sha256-XA9Ay9kJApY+bDeOf0iPv+BWYFuTmIuqsLEPgRTCZCE=";
};

nativeBuildInputs = [
pkg-config which qttools
pkg-config
which
qttools
];

buildInputs = [
qtbase qtsvg qtwebkit
libuchardet
qtbase
qtsvg
qtwebengine
qtwebsockets
];

preConfigure = ''
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30985,7 +30985,7 @@ with pkgs;

notepad-next = libsForQt5.callPackage ../applications/editors/notepad-next { };

notepadqq = libsForQt514.callPackage ../applications/editors/notepadqq { };
notepadqq = libsForQt5.callPackage ../applications/editors/notepadqq { };

notmuch = callPackage ../applications/networking/mailreaders/notmuch {
gmime = gmime3;
Expand Down

0 comments on commit 57dcd38

Please sign in to comment.