mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
12 lines
267 B
Nix
12 lines
267 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|