Commit 9fb2ae4d authored by aleksana's avatar aleksana
Browse files

leafpad: remove

parent 2c8279af
Loading
Loading
Loading
Loading
+0 −28
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, intltool, pkg-config, gtk2 }:

stdenv.mkDerivation rec {
  version = "0.8.19";
  pname = "leafpad";
  src = fetchurl {
    url = "https://download.savannah.gnu.org/releases/leafpad/${pname}-${version}.tar.gz";
    sha256 = "sha256-B9P3EvTb0KMyUf0d7hTiGv3J+SCQ/HaMEasKxVatvpc=";
  };

  nativeBuildInputs = [ pkg-config intltool ];
  buildInputs = [ gtk2 ];

  hardeningDisable = [ "format" ];

  configureFlags = [
    "--enable-chooser"
  ];

  meta = with lib; {
    description = "Notepad clone for GTK 2.0";
    homepage = "http://tarot.freeshell.org/leafpad";
    platforms = platforms.linux;
    maintainers = [ maintainers.flosse ];
    license = licenses.gpl3;
    mainProgram = "leafpad";
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -568,6 +568,7 @@ mapAliases {
  LASzip = laszip; # Added 2024-06-12
  LASzip2 = laszip_2; # Added 2024-06-12
  latinmodern-math = lmmath;
  leafpad = throw "'leafpad' has been removed due to lack of maintenance upstream. Consider using 'xfce.mouspad' instead"; # Added 2024-10-19
  ledger_agent = ledger-agent; # Added 2024-01-07
  lfs = dysk; # Added 2023-07-03
  libAfterImage = throw "'libAfterImage' has been removed from nixpkgs, as it's no longer in development for a long time"; # Added 2024-06-01
+0 −2
Original line number Diff line number Diff line
@@ -9577,8 +9577,6 @@ with pkgs;
  ldns = callPackage ../development/libraries/ldns { };
  leafpad = callPackage ../applications/editors/leafpad { };
  leanblueprint = with python3Packages; toPythonApplication leanblueprint;
  leanify = callPackage ../tools/misc/leanify { };