17 lines
450 B
Nix
17 lines
450 B
Nix
{ stdenv, fetchurl, pkgconfig, libxml2, gtk3, gnome3, intltool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libxml2 gtk3 intltool ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Gnome docking library";
|
|
homepage = https://developer.gnome.org/gdl/;
|
|
maintainers = gnome3.maintainers;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|