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

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

  buildInputs = [ pkgconfig glib gtk3 enchant isocodes vala ];

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