ab3eeabfed
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
15 lines
359 B
Nix
15 lines
359 B
Nix
{stdenv, fetchurl_gnome, pkgconfig, glib, libIDL}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = src.pkgname;
|
|
|
|
src = fetchurl_gnome {
|
|
project = "ORBit2";
|
|
major = "2"; minor = "14"; patchlevel = "19";
|
|
sha256 = "0l3mhpyym9m5iz09fz0rgiqxl2ym6kpkwpsp1xrr4aa80nlh1jam";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
propagatedBuildInputs = [ glib libIDL ];
|
|
}
|