add Fedora 24

This commit is contained in:
Domen Kožar 2016-08-12 16:44:05 +02:00
parent 52f21069d0
commit b9e009b5b5

View File

@ -1124,6 +1124,32 @@ rec {
unifiedSystemDir = true;
};
fedora24i386 = {
name = "fedora-24-i386";
fullName = "Fedora 24 (i386)";
packagesList = fetchurl rec {
url = "mirror://fedora/linux/releases/24/Everything/i386/os/repodata/${sha256}-primary.xml.gz";
sha256 = "6928e251628da7a74b79180739a43784e534eaa744ba4bcb18c847dff541f344";
};
urlPrefix = mirror://fedora/linux/releases/24/Everything/i386/os;
archs = ["noarch" "i386" "i586" "i686"];
packages = commonFedoraPackages ++ [ "cronie" "util-linux" ];
unifiedSystemDir = true;
};
fedora24x86_64 = {
name = "fedora-24-x86_64";
fullName = "Fedora 24 (x86_64)";
packagesList = fetchurl rec {
url = "mirror://fedora/linux/releases/24/Everything/x86_64/os/repodata/${sha256}-primary.xml.gz";
sha256 = "8dcc989396ed27fadd252ba9b655019934bc3d9915f186f1f2f27e71eba7b42f";
};
urlPrefix = mirror://fedora/linux/releases/24/Everything/x86_64/os;
archs = ["noarch" "x86_64"];
packages = commonFedoraPackages ++ [ "cronie" "util-linux" ];
unifiedSystemDir = true;
};
opensuse103i386 = {
name = "opensuse-10.3-i586";
fullName = "openSUSE 10.3 (i586)";