nixpkgs-suyu/pkgs/applications/editors/leafpad/default.nix

28 lines
704 B
Nix
Raw Normal View History

{ stdenv, fetchurl, intltool, pkgconfig, gtk2 }:
2014-10-23 17:54:56 +02:00
stdenv.mkDerivation rec {
version = "0.8.18.1";
pname = "leafpad";
2014-10-23 17:54:56 +02:00
src = fetchurl {
url = "https://download.savannah.gnu.org/releases/leafpad/${pname}-${version}.tar.gz";
2014-10-23 17:54:56 +02:00
sha256 = "0b0az2wvqgvam7w0ns1j8xp2llslm1rx6h7zcsy06a7j0yp257cm";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ intltool gtk2 ];
2014-10-23 17:54:56 +02:00
hardeningDisable = [ "format" ];
2016-02-12 04:50:09 +01:00
2014-10-23 17:54:56 +02:00
configureFlags = [
"--enable-chooser"
];
meta = with stdenv.lib; {
description = "A notepad clone for GTK 2.0";
2014-10-23 17:54:56 +02:00
homepage = http://tarot.freeshell.org/leafpad;
platforms = platforms.linux;
maintainers = [ maintainers.flosse ];
license = licenses.gpl3;
2014-10-23 17:54:56 +02:00
};
}