summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/misc/gspell/default.nix
blob: e8c299685f70327f4cdba1f74cef6123ae20c523 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv, fetchurl, pkgconfig, glib, gtk3, enchant, isocodes, vala }:

stdenv.mkDerivation rec {
  inherit (import ./src.nix fetchurl) name src;

  propagatedBuildInputs = [ enchant ]; # required for pkgconfig

  nativeBuildInputs = [ pkgconfig vala ];
  buildInputs = [ glib gtk3 isocodes ];

  meta = with stdenv.lib; {
    platforms = platforms.linux;
  };
}