nixpkgs/pkgs/desktops/gnome/ORBit2.nix

11 lines
265 B
Nix
Raw Normal View History

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