10 lines
152 B
Nix
10 lines
152 B
Nix
|
{stdenv, fetchurl}:
|
||
|
|
||
|
if stdenv.system == "i686-linux"
|
||
|
then
|
||
|
(import ./blackdown-i686.nix) {
|
||
|
inherit stdenv fetchurl;
|
||
|
}
|
||
|
else
|
||
|
false
|