Unverified Commit 062b3224 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

featherpad: 1.4.1 -> 1.6.1 (#400684)

parents 25cd7507 e59b8ef3
Loading
Loading
Loading
Loading
+17 −19
Original line number Diff line number Diff line
{
  lib,
  mkDerivation,
  stdenv,
  fetchFromGitHub,
  cmake,
  qt6,
  hunspell,
  pkg-config,
  qttools,
  qtbase,
  qtsvg,
  qtx11extras,
  fetchFromGitHub,
}:

mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "featherpad";
  version = "1.4.1";
  version = "1.6.1";

  src = fetchFromGitHub {
    owner = "tsujan";
    repo = "FeatherPad";
    rev = "V${version}";
    sha256 = "sha256-8IT/PxLz6BsLHzY5pM0bTlAO0xvfC7/aI7+Gbw2LyME=";
    tag = "V${finalAttrs.version}";
    hash = "sha256-uI/XKBBoKsbABQWvTQbqFLStXFeiJI2u0DA+Injxon0=";
  };

  nativeBuildInputs = [
    cmake
    pkg-config
    qttools
    qt6.qttools
    qt6.wrapQtAppsHook
  ];

  buildInputs = [
    hunspell
    qtbase
    qtsvg
    qtx11extras
    qt6.qtbase
    qt6.qtsvg
  ];

  meta = with lib; {
  meta = {
    description = "Lightweight Qt5 Plain-Text Editor for Linux";
    homepage = "https://github.com/tsujan/FeatherPad";
    platforms = platforms.linux;
    maintainers = [ maintainers.flosse ];
    license = licenses.gpl3Plus;
    platforms = lib.platforms.linux;
    maintainers = [ lib.maintainers.flosse ];
    license = lib.licenses.gpl3Plus;
  };
}
})
+1 −1
Original line number Diff line number Diff line
@@ -3346,7 +3346,7 @@ with pkgs;
  fcitx5-table-other = callPackage ../tools/inputmethods/fcitx5/fcitx5-table-other.nix { };
  featherpad = qt5.callPackage ../applications/editors/featherpad { };
  featherpad = callPackage ../applications/editors/featherpad { };
  ffsend = callPackage ../tools/misc/ffsend {
    inherit (darwin.apple_sdk.frameworks) Security AppKit;