summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4/applications/mousepad.nix
blob: 920151282a80d53a2abdc1721a79b38ad5374c45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, libxfcegui4, gtk }:

stdenv.mkDerivation rec {
  name = "mousepad-0.2.16";
  
  src = fetchurl {
    url = "http://www.xfce.org/archive/src/apps/mousepad/0.2/${name}.tar.bz2";
    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+";
  };
}