3d98c0bf14
svn path=/nixpkgs/trunk/; revision=8107
11 lines
265 B
Nix
11 lines
265 B
Nix
{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];
|
|
}
|