1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 10:00:56 +00:00
nixpkgs/pkgs/desktops/gnome/libgnomecanvas.nix

11 lines
274 B
Nix
Raw Normal View History

{input, stdenv, fetchurl, pkgconfig, gtk, libart, libglade}:
assert pkgconfig != null && gtk != null && libart != null
&& libglade != null;
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [pkgconfig libglade];
propagatedBuildInputs = [gtk libart];
}