2011-08-23 00:51:23 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, libxfcegui4, gtk }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mousepad-0.2.16";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2012-05-15 23:45:35 +02:00
|
|
|
url = "http://archive.xfce.org/src/apps/mousepad/0.2/${name}.tar.bz2";
|
2011-08-23 00:51:23 +02:00
|
|
|
sha1 = "4e63033e0a71578f3ec9a0d2e6a505efd0424ef9";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pkgconfig intltool libxfce4util libxfcegui4 gtk ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.xfce.org/projects/mousepad/;
|
|
|
|
description = "A simple text editor for Xfce";
|
|
|
|
license = "GPLv2+";
|
2011-09-06 01:30:26 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2011-08-23 00:51:23 +02:00
|
|
|
};
|
|
|
|
}
|