mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
3d98c0bf14
svn path=/nixpkgs/trunk/; revision=8107
9 lines
236 B
Nix
9 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];
|
|
}
|