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

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

  buildInputs = [ pkgconfig glib gtk3 enchant isocodes ];

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