АБ
Size: a a a
АБ
АБ
with (import <nixpkgs> {});
pkgsCross.mingwW64.stdenv.mkDerivation {
name = "foo";
allowUnsupportedSystem = true;
src = ./.;
nativeBuildInputs = [ lua5_1 ];
buildInputs = with pkgsCross.mingwW64; [ (SDL2.override { x11Support = false; })
bzip2 curl.out
zlib openssl (fftwFloat.overrideAttrs (_: { configureFlags = [ "--enable-shared" ]; meta.platforms = stdenv.lib.platforms.all })) ];
}
АБ
АБ
S
with (import <nixpkgs> {});
pkgsCross.mingwW64.stdenv.mkDerivation {
name = "foo";
allowUnsupportedSystem = true;
src = ./.;
nativeBuildInputs = [ lua5_1 ];
buildInputs = with pkgsCross.mingwW64; [ (SDL2.override { x11Support = false; })
bzip2 curl.out
zlib openssl (fftwFloat.overrideAttrs (_: { configureFlags = [ "--enable-shared" ]; meta.platforms = stdenv.lib.platforms.all })) ];
}
АБ
with (import <nixpkgs> { });
pkgsCross.mingwW64.stdenv.mkDerivation {
name = "foo";
allowUnsupportedSystem = true;
nativeBuildInputs = [ lua5_1 ];
buildInputs = with pkgsCross.mingwW64; [
(SDL2.override { x11Support = false; })
bzip2
curl.out
zlib
openssl
(fftwFloat.overrideAttrs (_: {
configureFlags = [ "--enable-shared" ];
meta.platforms = stdenv.lib.platforms.all;
}))
];
}
АБ
S
АБ
with (import <nixpkgs> { });
pkgsCross.mingwW64.stdenv.mkDerivation {
name = "foo";
allowUnsupportedSystem = true;
nativeBuildInputs = [ lua5_1 ];
buildInputs = with pkgsCross.mingwW64; [
((SDL2.override { x11Support = false; }).overrideAttrs
(_: { postPatch = "true"; }))
bzip2
curl.out
zlib
openssl
(fftwFloat.overrideAttrs (_: {
configureFlags = [ "--enable-shared" ];
meta.platforms = stdenv.lib.platforms.all;
}))
];
}
АБ
АБ
АБ
АБ
АБ
S