7 lines
129 B
Nix
7 lines
129 B
Nix
|
{input, stdenv, fetchurl, pkgconfig, gtk}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
inherit (input) name src;
|
||
|
buildInputs = [pkgconfig gtk];
|
||
|
}
|