3d98c0bf14
svn path=/nixpkgs/trunk/; revision=8107
10 lines
236 B
Nix
10 lines
236 B
Nix
{input, stdenv, fetchurl, pkgconfig, gtk, libxml2}:
|
|
|
|
assert pkgconfig != null && gtk != null && libxml2 != null;
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
buildInputs = [pkgconfig];
|
|
propagatedBuildInputs = [gtk libxml2];
|
|
}
|