forked from mirrors/nixpkgs
added leafpad editor
This commit is contained in:
parent
2ac3c2e462
commit
137eb4c98a
23
pkgs/applications/editors/leafpad/default.nix
Normal file
23
pkgs/applications/editors/leafpad/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue