added leafpad editor

This commit is contained in:
Markus Kohlhase 2014-10-23 17:54:56 +02:00
parent 2ac3c2e462
commit 137eb4c98a
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchurl, intltool, pkgconfig, gtk }:
stdenv.mkDerivation rec {
version = "0.8.18.1";
name = "leafpad-${version}";
src = fetchurl {
url = "http://download.savannah.gnu.org/releases/leafpad/${name}.tar.gz";
sha256 = "0b0az2wvqgvam7w0ns1j8xp2llslm1rx6h7zcsy06a7j0yp257cm";
};
buildInputs = [ intltool pkgconfig gtk ];
configureFlags = [
"--enable-chooser"
];
meta = {
description = "A notepad clone for GTK+ 2.0";
homepage = http://tarot.freeshell.org/leafpad;
maintainers = [ stdenv.lib.maintainers.flosse ];
license = stdenv.lib.licenses.gpl3;
};
}

View file

@ -1545,6 +1545,8 @@ let
ldns = callPackage ../development/libraries/ldns { };
leafpad = callPackage ../applications/editors/leafpad { };
lftp = callPackage ../tools/networking/lftp { };
libconfig = callPackage ../development/libraries/libconfig { };