3d98c0bf14
svn path=/nixpkgs/trunk/; revision=8107
7 lines
129 B
Nix
7 lines
129 B
Nix
{input, stdenv, fetchurl, pkgconfig, x11}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
buildInputs = [pkgconfig x11];
|
|
}
|