mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
16 lines
423 B
Nix
16 lines
423 B
Nix
{ stdenv, fetchurl, pkgconfig, libxml2, gtk3, gnome3, intltool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
buildInputs = [ pkgconfig 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;
|
|
};
|
|
}
|