main
 1{
 2  stdenvNoCC,
 3  lib,
 4}: {
 5  name,
 6  version,
 7  src,
 8  ...
 9} @ args:
10stdenvNoCC.mkDerivation (args
11  // {
12    name = "${name}-bin-${version}";
13    installPhase = "cp -r $src $out";
14    meta = {
15      description = "Spritz-Wine builds for some games ";
16      homepage = "https://github.com/NelloKudo/spritz-wine";
17      license = lib.licenses.mit;
18      platforms = ["x86_64-linux"];
19    };
20  })