nixpkgs/pkgs/desktops/gnome-3/misc/gspell/default.nix

15 lines
362 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, glib, gtk3, enchant, isocodes, vala }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
propagatedBuildInputs = [ enchant ]; # required for pkgconfig
2017-12-05 15:31:14 -08:00
nativeBuildInputs = [ pkgconfig vala ];
buildInputs = [ glib gtk3 isocodes ];
meta = with stdenv.lib; {
platforms = platforms.linux;
};
}