mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
7 lines
148 B
Nix
7 lines
148 B
Nix
|
{input, stdenv, fetchurl, pkgconfig, libxml2, glib}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
inherit (input) name src;
|
||
|
buildInputs = [pkgconfig libxml2 glib];
|
||
|
}
|