mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #19161 from rszibele/notepadqq-0.53.0
notepadqq: init at 0.53.0
This commit is contained in:
commit
3d93d334f9
2 changed files with 37 additions and 0 deletions
33
pkgs/applications/editors/notepadqq/default.nix
Normal file
33
pkgs/applications/editors/notepadqq/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ stdenv, fetchgit, pkgconfig, which, qtbase }:
|
||||
|
||||
let
|
||||
version = "0.53.0";
|
||||
in stdenv.mkDerivation {
|
||||
name = "notepadqq-${version}";
|
||||
src = fetchgit {
|
||||
url = "https://github.com/notepadqq/notepadqq.git";
|
||||
rev = "3b0751277fb268ec72b466b37d0f0977c536bc1b";
|
||||
sha256 = "0hw94mn2xg2r58afvz1xg990jinv9aa33942zgwq54qwj61r93hi";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgconfig which
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase.qtsvg qtbase.qtwebkit qtbase.qttools
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
export LRELEASE="lrelease"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://notepadqq.altervista.org/";
|
||||
description = "Notepad++-like editor for the Linux desktop";
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ rszibele ];
|
||||
};
|
||||
}
|
|
@ -13754,6 +13754,10 @@ in
|
|||
|
||||
nedit = callPackage ../applications/editors/nedit { };
|
||||
|
||||
notepadqq = callPackage ../applications/editors/notepadqq {
|
||||
qtbase = qt55;
|
||||
};
|
||||
|
||||
notmuch = callPackage ../applications/networking/mailreaders/notmuch {
|
||||
# No need to build Emacs - notmuch.el works just fine without
|
||||
# byte-compilation. Use emacsPackages.notmuch if you want to
|
||||
|
|
Loading…
Reference in a new issue