Merge master into staging-next
This commit is contained in:
commit
6787116890
@ -8546,6 +8546,12 @@
|
|||||||
githubId = 9636071;
|
githubId = 9636071;
|
||||||
name = "Myrl Hex";
|
name = "Myrl Hex";
|
||||||
};
|
};
|
||||||
|
n0emis = {
|
||||||
|
email = "nixpkgs@n0emis.network";
|
||||||
|
github = "n0emis";
|
||||||
|
githubId = 22817873;
|
||||||
|
name = "Ember Keske";
|
||||||
|
};
|
||||||
nadrieril = {
|
nadrieril = {
|
||||||
email = "nadrieril@gmail.com";
|
email = "nadrieril@gmail.com";
|
||||||
github = "nadrieril";
|
github = "nadrieril";
|
||||||
|
@ -396,6 +396,7 @@
|
|||||||
./services/development/jupyterhub/default.nix
|
./services/development/jupyterhub/default.nix
|
||||||
./services/development/rstudio-server/default.nix
|
./services/development/rstudio-server/default.nix
|
||||||
./services/development/lorri.nix
|
./services/development/lorri.nix
|
||||||
|
./services/development/zammad.nix
|
||||||
./services/display-managers/greetd.nix
|
./services/display-managers/greetd.nix
|
||||||
./services/editors/emacs.nix
|
./services/editors/emacs.nix
|
||||||
./services/editors/infinoted.nix
|
./services/editors/infinoted.nix
|
||||||
|
323
nixos/modules/services/development/zammad.nix
Normal file
323
nixos/modules/services/development/zammad.nix
Normal file
@ -0,0 +1,323 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.services.zammad;
|
||||||
|
settingsFormat = pkgs.formats.yaml { };
|
||||||
|
filterNull = filterAttrs (_: v: v != null);
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
Restart = "always";
|
||||||
|
|
||||||
|
User = "zammad";
|
||||||
|
Group = "zammad";
|
||||||
|
PrivateTmp = true;
|
||||||
|
StateDirectory = "zammad";
|
||||||
|
WorkingDirectory = cfg.dataDir;
|
||||||
|
};
|
||||||
|
environment = {
|
||||||
|
RAILS_ENV = "production";
|
||||||
|
NODE_ENV = "production";
|
||||||
|
RAILS_SERVE_STATIC_FILES = "true";
|
||||||
|
RAILS_LOG_TO_STDOUT = "true";
|
||||||
|
};
|
||||||
|
databaseConfig = settingsFormat.generate "database.yml" cfg.database.settings;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
|
||||||
|
options = {
|
||||||
|
services.zammad = {
|
||||||
|
enable = mkEnableOption "Zammad, a web-based, open source user support/ticketing solution.";
|
||||||
|
|
||||||
|
package = mkOption {
|
||||||
|
type = types.package;
|
||||||
|
default = pkgs.zammad;
|
||||||
|
defaultText = literalExpression "pkgs.zammad";
|
||||||
|
description = "Zammad package to use.";
|
||||||
|
};
|
||||||
|
|
||||||
|
dataDir = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "/var/lib/zammad";
|
||||||
|
description = ''
|
||||||
|
Path to a folder that will contain Zammad working directory.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
host = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "127.0.0.1";
|
||||||
|
example = "192.168.23.42";
|
||||||
|
description = "Host address.";
|
||||||
|
};
|
||||||
|
|
||||||
|
openPorts = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Whether to open firewall ports for Zammad";
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 3000;
|
||||||
|
description = "Web service port.";
|
||||||
|
};
|
||||||
|
|
||||||
|
websocketPort = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 6042;
|
||||||
|
description = "Websocket service port.";
|
||||||
|
};
|
||||||
|
|
||||||
|
database = {
|
||||||
|
type = mkOption {
|
||||||
|
type = types.enum [ "PostgreSQL" "MySQL" ];
|
||||||
|
default = "PostgreSQL";
|
||||||
|
example = "MySQL";
|
||||||
|
description = "Database engine to use.";
|
||||||
|
};
|
||||||
|
|
||||||
|
host = mkOption {
|
||||||
|
type = types.nullOr types.str;
|
||||||
|
default = {
|
||||||
|
PostgreSQL = "/run/postgresql";
|
||||||
|
MySQL = "localhost";
|
||||||
|
}.${cfg.database.type};
|
||||||
|
defaultText = literalExpression ''
|
||||||
|
{
|
||||||
|
PostgreSQL = "/run/postgresql";
|
||||||
|
MySQL = "localhost";
|
||||||
|
}.''${config.services.zammad.database.type};
|
||||||
|
'';
|
||||||
|
description = ''
|
||||||
|
Database host address.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.nullOr types.port;
|
||||||
|
default = null;
|
||||||
|
description = "Database port. Use <literal>null</literal> for default port.";
|
||||||
|
};
|
||||||
|
|
||||||
|
name = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "zammad";
|
||||||
|
description = ''
|
||||||
|
Database name.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
user = mkOption {
|
||||||
|
type = types.nullOr types.str;
|
||||||
|
default = "zammad";
|
||||||
|
description = "Database user.";
|
||||||
|
};
|
||||||
|
|
||||||
|
passwordFile = mkOption {
|
||||||
|
type = types.nullOr types.path;
|
||||||
|
default = null;
|
||||||
|
example = "/run/keys/zammad-dbpassword";
|
||||||
|
description = ''
|
||||||
|
A file containing the password for <option>services.zammad.database.user</option>.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
createLocally = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = true;
|
||||||
|
description = "Whether to create a local database automatically.";
|
||||||
|
};
|
||||||
|
|
||||||
|
settings = mkOption {
|
||||||
|
type = settingsFormat.type;
|
||||||
|
default = { };
|
||||||
|
example = literalExpression ''
|
||||||
|
{
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
description = ''
|
||||||
|
The <filename>database.yml</filename> configuration file as key value set.
|
||||||
|
See <link xlink:href='TODO' />
|
||||||
|
for list of configuration parameters.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
secretKeyBaseFile = mkOption {
|
||||||
|
type = types.nullOr types.path;
|
||||||
|
default = null;
|
||||||
|
example = "/run/keys/secret_key_base";
|
||||||
|
description = ''
|
||||||
|
The path to a file containing the
|
||||||
|
<literal>secret_key_base</literal> secret.
|
||||||
|
|
||||||
|
Zammad uses <literal>secret_key_base</literal> to encrypt
|
||||||
|
the cookie store, which contains session data, and to digest
|
||||||
|
user auth tokens.
|
||||||
|
|
||||||
|
Needs to be a 64 byte long string of hexadecimal
|
||||||
|
characters. You can generate one by running
|
||||||
|
|
||||||
|
<screen>
|
||||||
|
<prompt>$ </prompt>openssl rand -hex 64 >/path/to/secret_key_base_file
|
||||||
|
</screen>
|
||||||
|
|
||||||
|
This should be a string, not a nix path, since nix paths are
|
||||||
|
copied into the world-readable nix store.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
|
services.zammad.database.settings = {
|
||||||
|
production = mapAttrs (_: v: mkDefault v) (filterNull {
|
||||||
|
adapter = {
|
||||||
|
PostgreSQL = "postgresql";
|
||||||
|
MySQL = "mysql2";
|
||||||
|
}.${cfg.database.type};
|
||||||
|
database = cfg.database.name;
|
||||||
|
pool = 50;
|
||||||
|
timeout = 5000;
|
||||||
|
encoding = "utf8";
|
||||||
|
username = cfg.database.user;
|
||||||
|
host = cfg.database.host;
|
||||||
|
port = cfg.database.port;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
networking.firewall.allowedTCPPorts = mkIf cfg.openPorts [
|
||||||
|
config.services.zammad.port
|
||||||
|
config.services.zammad.websocketPort
|
||||||
|
];
|
||||||
|
|
||||||
|
users.users.zammad = {
|
||||||
|
isSystemUser = true;
|
||||||
|
home = cfg.dataDir;
|
||||||
|
group = "zammad";
|
||||||
|
};
|
||||||
|
|
||||||
|
users.groups.zammad = { };
|
||||||
|
|
||||||
|
assertions = [
|
||||||
|
{
|
||||||
|
assertion = cfg.database.createLocally -> cfg.database.user == "zammad";
|
||||||
|
message = "services.zammad.database.user must be set to \"zammad\" if services.zammad.database.createLocally is set to true";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
assertion = cfg.database.createLocally -> cfg.database.passwordFile == null;
|
||||||
|
message = "a password cannot be specified if services.zammad.database.createLocally is set to true";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
services.mysql = optionalAttrs (cfg.database.createLocally && cfg.database.type == "MySQL") {
|
||||||
|
enable = true;
|
||||||
|
package = mkDefault pkgs.mariadb;
|
||||||
|
ensureDatabases = [ cfg.database.name ];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = cfg.database.user;
|
||||||
|
ensurePermissions = { "${cfg.database.name}.*" = "ALL PRIVILEGES"; };
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
services.postgresql = optionalAttrs (cfg.database.createLocally && cfg.database.type == "PostgreSQL") {
|
||||||
|
enable = true;
|
||||||
|
ensureDatabases = [ cfg.database.name ];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = cfg.database.user;
|
||||||
|
ensurePermissions = { "DATABASE ${cfg.database.name}" = "ALL PRIVILEGES"; };
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.services.zammad-web = {
|
||||||
|
inherit environment;
|
||||||
|
serviceConfig = serviceConfig // {
|
||||||
|
# loading all the gems takes time
|
||||||
|
TimeoutStartSec = 1200;
|
||||||
|
};
|
||||||
|
after = [
|
||||||
|
"network.target"
|
||||||
|
"postgresql.service"
|
||||||
|
];
|
||||||
|
requires = [
|
||||||
|
"postgresql.service"
|
||||||
|
];
|
||||||
|
description = "Zammad web";
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
preStart = ''
|
||||||
|
# Blindly copy the whole project here.
|
||||||
|
chmod -R +w .
|
||||||
|
rm -rf ./public/assets/*
|
||||||
|
rm -rf ./tmp/*
|
||||||
|
rm -rf ./log/*
|
||||||
|
cp -r --no-preserve=owner ${cfg.package}/* .
|
||||||
|
chmod -R +w .
|
||||||
|
# config file
|
||||||
|
cp ${databaseConfig} ./config/database.yml
|
||||||
|
chmod -R +w .
|
||||||
|
${optionalString (cfg.database.passwordFile != null) ''
|
||||||
|
{
|
||||||
|
echo -n " password: "
|
||||||
|
cat ${cfg.database.passwordFile}
|
||||||
|
} >> ./config/database.yml
|
||||||
|
''}
|
||||||
|
${optionalString (cfg.secretKeyBaseFile != null) ''
|
||||||
|
{
|
||||||
|
echo "production: "
|
||||||
|
echo -n " secret_key_base: "
|
||||||
|
cat ${cfg.secretKeyBaseFile}
|
||||||
|
} > ./config/secrets.yml
|
||||||
|
''}
|
||||||
|
|
||||||
|
if [ `${config.services.postgresql.package}/bin/psql \
|
||||||
|
--host ${cfg.database.host} \
|
||||||
|
${optionalString
|
||||||
|
(cfg.database.port != null)
|
||||||
|
"--port ${toString cfg.database.port}"} \
|
||||||
|
--username ${cfg.database.user} \
|
||||||
|
--dbname ${cfg.database.name} \
|
||||||
|
--command "SELECT COUNT(*) FROM pg_class c \
|
||||||
|
JOIN pg_namespace s ON s.oid = c.relnamespace \
|
||||||
|
WHERE s.nspname NOT IN ('pg_catalog', 'pg_toast', 'information_schema') \
|
||||||
|
AND s.nspname NOT LIKE 'pg_temp%';" | sed -n 3p` -eq 0 ]; then
|
||||||
|
echo "Initialize database"
|
||||||
|
./bin/rake --no-system db:migrate
|
||||||
|
./bin/rake --no-system db:seed
|
||||||
|
else
|
||||||
|
echo "Migrate database"
|
||||||
|
./bin/rake --no-system db:migrate
|
||||||
|
fi
|
||||||
|
echo "Done"
|
||||||
|
'';
|
||||||
|
script = "./script/rails server -b ${cfg.host} -p ${toString cfg.port}";
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.services.zammad-websocket = {
|
||||||
|
inherit serviceConfig environment;
|
||||||
|
after = [ "zammad-web.service" ];
|
||||||
|
requires = [ "zammad-web.service" ];
|
||||||
|
description = "Zammad websocket";
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
script = "./script/websocket-server.rb -b ${cfg.host} -p ${toString cfg.websocketPort} start";
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.services.zammad-scheduler = {
|
||||||
|
inherit environment;
|
||||||
|
serviceConfig = serviceConfig // { Type = "forking"; };
|
||||||
|
after = [ "zammad-web.service" ];
|
||||||
|
requires = [ "zammad-web.service" ];
|
||||||
|
description = "Zammad scheduler";
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
script = "./script/scheduler.rb start";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
meta.maintainers = with lib.maintainers; [ garbas taeer ];
|
||||||
|
}
|
@ -37,8 +37,13 @@ in
|
|||||||
{ assertion = cfg.efi -> cfg.hvm;
|
{ assertion = cfg.efi -> cfg.hvm;
|
||||||
message = "EC2 instances using EFI must be HVM instances.";
|
message = "EC2 instances using EFI must be HVM instances.";
|
||||||
}
|
}
|
||||||
|
{ assertion = versionOlder config.boot.kernelPackages.kernel.version "5.15";
|
||||||
|
message = "ENA driver fails to build with kernel >= 5.15";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
boot.kernelPackages = pkgs.linuxKernel.packages.linux_5_10;
|
||||||
|
|
||||||
boot.growPartition = cfg.hvm;
|
boot.growPartition = cfg.hvm;
|
||||||
|
|
||||||
fileSystems."/" = mkIf (!cfg.zfs.enable) {
|
fileSystems."/" = mkIf (!cfg.zfs.enable) {
|
||||||
|
@ -130,7 +130,8 @@ in rec {
|
|||||||
(onFullSupported "nixos.tests.networking.networkd.virtual")
|
(onFullSupported "nixos.tests.networking.networkd.virtual")
|
||||||
(onFullSupported "nixos.tests.networking.networkd.vlan")
|
(onFullSupported "nixos.tests.networking.networkd.vlan")
|
||||||
(onFullSupported "nixos.tests.systemd-networkd-ipv6-prefix-delegation")
|
(onFullSupported "nixos.tests.systemd-networkd-ipv6-prefix-delegation")
|
||||||
(onFullSupported "nixos.tests.nfs3.simple")
|
# fails with kernel >= 5.15 https://github.com/NixOS/nixpkgs/pull/152505#issuecomment-1005049314
|
||||||
|
#(onFullSupported "nixos.tests.nfs3.simple")
|
||||||
(onFullSupported "nixos.tests.nfs4.simple")
|
(onFullSupported "nixos.tests.nfs4.simple")
|
||||||
(onFullSupported "nixos.tests.openssh")
|
(onFullSupported "nixos.tests.openssh")
|
||||||
(onFullSupported "nixos.tests.pantheon")
|
(onFullSupported "nixos.tests.pantheon")
|
||||||
|
@ -107,7 +107,8 @@ in rec {
|
|||||||
"nixos.tests.nat.firewall-conntrack.x86_64-linux"
|
"nixos.tests.nat.firewall-conntrack.x86_64-linux"
|
||||||
"nixos.tests.nat.firewall.x86_64-linux"
|
"nixos.tests.nat.firewall.x86_64-linux"
|
||||||
"nixos.tests.nat.standalone.x86_64-linux"
|
"nixos.tests.nat.standalone.x86_64-linux"
|
||||||
"nixos.tests.nfs3.simple.x86_64-linux"
|
# fails with kernel >= 5.15 https://github.com/NixOS/nixpkgs/pull/152505#issuecomment-1005049314
|
||||||
|
#"nixos.tests.nfs3.simple.x86_64-linux"
|
||||||
"nixos.tests.openssh.x86_64-linux"
|
"nixos.tests.openssh.x86_64-linux"
|
||||||
"nixos.tests.php.fpm.x86_64-linux"
|
"nixos.tests.php.fpm.x86_64-linux"
|
||||||
"nixos.tests.php.pcre.x86_64-linux"
|
"nixos.tests.php.pcre.x86_64-linux"
|
||||||
|
@ -572,6 +572,7 @@ in
|
|||||||
xxh = handleTest ./xxh.nix {};
|
xxh = handleTest ./xxh.nix {};
|
||||||
yabar = handleTest ./yabar.nix {};
|
yabar = handleTest ./yabar.nix {};
|
||||||
yggdrasil = handleTest ./yggdrasil.nix {};
|
yggdrasil = handleTest ./yggdrasil.nix {};
|
||||||
|
zammad = handleTest ./zammad.nix {};
|
||||||
zfs = handleTest ./zfs.nix {};
|
zfs = handleTest ./zfs.nix {};
|
||||||
zigbee2mqtt = handleTest ./zigbee2mqtt.nix {};
|
zigbee2mqtt = handleTest ./zigbee2mqtt.nix {};
|
||||||
zoneminder = handleTest ./zoneminder.nix {};
|
zoneminder = handleTest ./zoneminder.nix {};
|
||||||
|
60
nixos/tests/zammad.nix
Normal file
60
nixos/tests/zammad.nix
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import ./make-test-python.nix (
|
||||||
|
{ lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
name = "zammad";
|
||||||
|
|
||||||
|
meta.maintainers = with lib.maintainers; [ garbas taeer ];
|
||||||
|
|
||||||
|
nodes.machine = { config, ... }: {
|
||||||
|
services.zammad.enable = true;
|
||||||
|
services.zammad.secretKeyBaseFile = pkgs.writeText "secret" ''
|
||||||
|
52882ef142066e09ab99ce816ba72522e789505caba224a52d750ec7dc872c2c371b2fd19f16b25dfbdd435a4dd46cb3df9f82eb63fafad715056bdfe25740d6
|
||||||
|
'';
|
||||||
|
|
||||||
|
systemd.services.zammad-locale-cheat =
|
||||||
|
let cfg = config.services.zammad; in
|
||||||
|
{
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
Restart = "always";
|
||||||
|
|
||||||
|
User = "zammad";
|
||||||
|
Group = "zammad";
|
||||||
|
PrivateTmp = true;
|
||||||
|
StateDirectory = "zammad";
|
||||||
|
WorkingDirectory = cfg.dataDir;
|
||||||
|
};
|
||||||
|
wantedBy = [ "zammad-web.service" ];
|
||||||
|
description = "Hack in the locale files so zammad doesn't try to access the internet";
|
||||||
|
script = ''
|
||||||
|
mkdir -p ./config/translations
|
||||||
|
VERSION=$(cat ${cfg.package}/VERSION)
|
||||||
|
|
||||||
|
# If these files are not in place, zammad will try to access the internet.
|
||||||
|
# For the test, we only need to supply en-us.
|
||||||
|
echo '[{"locale":"en-us","alias":"en","name":"English (United States)","active":true,"dir":"ltr"}]' \
|
||||||
|
> ./config/locales-$VERSION.yml
|
||||||
|
echo '[{"locale":"en-us","format":"time","source":"date","target":"mm/dd/yyyy","target_initial":"mm/dd/yyyy"},{"locale":"en-us","format":"time","source":"timestamp","target":"mm/dd/yyyy HH:MM","target_initial":"mm/dd/yyyy HH:MM"}]' \
|
||||||
|
> ./config/translations/en-us-$VERSION.yml
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
testScript = ''
|
||||||
|
start_all()
|
||||||
|
machine.wait_for_unit("postgresql.service")
|
||||||
|
machine.wait_for_unit("zammad-web.service")
|
||||||
|
machine.wait_for_unit("zammad-websocket.service")
|
||||||
|
machine.wait_for_unit("zammad-scheduler.service")
|
||||||
|
# wait for zammad to fully come up
|
||||||
|
machine.sleep(120)
|
||||||
|
|
||||||
|
# without the grep the command does not produce valid utf-8 for some reason
|
||||||
|
with subtest("welcome screen loads"):
|
||||||
|
machine.succeed(
|
||||||
|
"curl -sSfL http://localhost:3000/ | grep '<title>Zammad Helpdesk</title>'"
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
)
|
@ -5,13 +5,13 @@
|
|||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "rednotebook";
|
pname = "rednotebook";
|
||||||
version = "2.23";
|
version = "2.24";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jendrikseipp";
|
owner = "jendrikseipp";
|
||||||
repo = "rednotebook";
|
repo = "rednotebook";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-CLQWbwwJnr6Al223GvV1hVNK13p2iAyjNF7PhdaU9N0=";
|
sha256 = "sha256-nTFyRNJAhTrVlKdLd2F0jv7VcNn2pGTAegvfMjfHY84=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# We have not packaged tests.
|
# We have not packaged tests.
|
||||||
|
@ -5,13 +5,13 @@
|
|||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "texworks";
|
pname = "texworks";
|
||||||
version = "0.6.6";
|
version = "0.6.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "TeXworks";
|
owner = "TeXworks";
|
||||||
repo = "texworks";
|
repo = "texworks";
|
||||||
rev = "release-${version}";
|
rev = "release-${version}";
|
||||||
sha256 = "0l8jl1b8lpas7yz6m0qc2nikyn54lx2ljzmjjz3zgxgd6l502006";
|
sha256 = "sha256-v0UukFM5brPtgq+zH5H1KfUc0eL0hjTC9z0tVQRqu2Q=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config ];
|
nativeBuildInputs = [ cmake pkg-config ];
|
||||||
|
@ -7985,6 +7985,18 @@ final: prev:
|
|||||||
meta.homepage = "https://github.com/ap/vim-css-color/";
|
meta.homepage = "https://github.com/ap/vim-css-color/";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vim-CtrlXA = buildVimPluginFrom2Nix {
|
||||||
|
pname = "vim-CtrlXA";
|
||||||
|
version = "2021-08-09";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Konfekt";
|
||||||
|
repo = "vim-CtrlXA";
|
||||||
|
rev = "404ea1e055921db5679b3734108d72850d6faa76";
|
||||||
|
sha256 = "10bgyqnwcqly3sxl27np1b690hnj1snqbcvg8pzh4zgdysfgy9xg";
|
||||||
|
};
|
||||||
|
meta.homepage = "https://github.com/Konfekt/vim-CtrlXA/";
|
||||||
|
};
|
||||||
|
|
||||||
vim-cue = buildVimPluginFrom2Nix {
|
vim-cue = buildVimPluginFrom2Nix {
|
||||||
pname = "vim-cue";
|
pname = "vim-cue";
|
||||||
version = "2021-06-18";
|
version = "2021-06-18";
|
||||||
|
@ -378,6 +378,7 @@ kien/rainbow_parentheses.vim
|
|||||||
knubie/vim-kitty-navigator
|
knubie/vim-kitty-navigator
|
||||||
konfekt/fastfold
|
konfekt/fastfold
|
||||||
Konfekt/vim-alias
|
Konfekt/vim-alias
|
||||||
|
Konfekt/vim-CtrlXA
|
||||||
konfekt/vim-DetectSpellLang
|
konfekt/vim-DetectSpellLang
|
||||||
kosayoda/nvim-lightbulb
|
kosayoda/nvim-lightbulb
|
||||||
kovisoft/slimv
|
kovisoft/slimv
|
||||||
|
@ -1276,8 +1276,8 @@ let
|
|||||||
mktplcRef = {
|
mktplcRef = {
|
||||||
name = "vscode-clangd";
|
name = "vscode-clangd";
|
||||||
publisher = "llvm-vs-code-extensions";
|
publisher = "llvm-vs-code-extensions";
|
||||||
version = "0.1.13";
|
version = "0.1.15";
|
||||||
sha256 = "/MpwbM+obcD3uqk8hnDrnbEK9Jot4fMe4sNzLt6mVGI=";
|
sha256 = "0skasnc490wp0l5xzpdmwdzjr4qiy63kg2qi27060m5yqkq3h8xn";
|
||||||
};
|
};
|
||||||
meta = {
|
meta = {
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
@ -1537,8 +1537,8 @@ let
|
|||||||
mktplcRef = {
|
mktplcRef = {
|
||||||
name = "java";
|
name = "java";
|
||||||
publisher = "redhat";
|
publisher = "redhat";
|
||||||
version = "1.2.0";
|
version = "1.3.0";
|
||||||
sha256 = "sha256-YmR3FWhPZSU2gE6NIVoA1HZBzaYaTNYFXC/uNwbDEdQ=";
|
sha256 = "sha256-Y5hP/Rq9BsFwbCRQWOfiLHKoYkKBpZx8blg9o74obfk=";
|
||||||
};
|
};
|
||||||
buildInputs = [ jdk ];
|
buildInputs = [ jdk ];
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -20,25 +20,15 @@
|
|||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "punes";
|
pname = "punes";
|
||||||
version = "0.108";
|
version = "0.109";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "punesemu";
|
owner = "punesemu";
|
||||||
repo = "puNES";
|
repo = "puNES";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0inkwmvbr2w4addmgk9r4f13yismang9ylfgflhh9352lf0lirv8";
|
sha256 = "sha256-6aRtR/d8nhzmpN9QKSZ62jye7qjfO+FpRMCXkX4Yubk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
|
||||||
# Drop when version > 0.108
|
|
||||||
# https://github.com/punesemu/puNES/issues/185
|
|
||||||
(fetchpatch {
|
|
||||||
name = "0001-punes-Fixed-make-install.patch";
|
|
||||||
url = "https://github.com/punesemu/puNES/commit/902434f50398ebcda0786ade4b28a0496084810e.patch";
|
|
||||||
sha256 = "1a3052n3n1qipi4bd7f7gq4zl5jjjzzzpbijdisis2vxvhnfvcim";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace configure.ac \
|
substituteInPlace configure.ac \
|
||||||
--replace '`$PKG_CONFIG --variable=host_bins Qt5Core`/lrelease' '${qttools.dev}/bin/lrelease'
|
--replace '`$PKG_CONFIG --variable=host_bins Qt5Core`/lrelease' '${qttools.dev}/bin/lrelease'
|
||||||
|
@ -35,6 +35,8 @@
|
|||||||
, grass
|
, grass
|
||||||
, withWebKit ? true
|
, withWebKit ? true
|
||||||
, qtwebkit
|
, qtwebkit
|
||||||
|
, pdal
|
||||||
|
, zstd
|
||||||
, makeWrapper
|
, makeWrapper
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -67,14 +69,14 @@ let
|
|||||||
six
|
six
|
||||||
];
|
];
|
||||||
in mkDerivation rec {
|
in mkDerivation rec {
|
||||||
version = "3.16.16";
|
version = "3.22.4";
|
||||||
pname = "qgis-ltr-unwrapped";
|
pname = "qgis-ltr-unwrapped";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "qgis";
|
owner = "qgis";
|
||||||
repo = "QGIS";
|
repo = "QGIS";
|
||||||
rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}";
|
rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}";
|
||||||
sha256 = "85RlV1Ik1BeN9B7UE51ktTWMiGkMga2E/fnhyiVwjIs=";
|
sha256 = "sha256-z2dCdaIJUKpZgJHtn1/qA07uMJpAWKL0cDx6B/n1Oxg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
@ -108,6 +110,8 @@ in mkDerivation rec {
|
|||||||
qtserialport
|
qtserialport
|
||||||
qtxmlpatterns
|
qtxmlpatterns
|
||||||
qt3d
|
qt3d
|
||||||
|
pdal
|
||||||
|
zstd
|
||||||
] ++ lib.optional withGrass grass
|
] ++ lib.optional withGrass grass
|
||||||
++ lib.optional withWebKit qtwebkit
|
++ lib.optional withWebKit qtwebkit
|
||||||
++ pythonBuildInputs;
|
++ pythonBuildInputs;
|
||||||
@ -126,6 +130,7 @@ in mkDerivation rec {
|
|||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DCMAKE_SKIP_BUILD_RPATH=OFF"
|
"-DCMAKE_SKIP_BUILD_RPATH=OFF"
|
||||||
"-DWITH_3D=True"
|
"-DWITH_3D=True"
|
||||||
|
"-DWITH_PDAL=TRUE"
|
||||||
"-DPYQT5_SIP_DIR=${py.pkgs.pyqt5}/${py.pkgs.python.sitePackages}/PyQt5/bindings"
|
"-DPYQT5_SIP_DIR=${py.pkgs.pyqt5}/${py.pkgs.python.sitePackages}/PyQt5/bindings"
|
||||||
"-DQSCI_SIP_DIR=${py.pkgs.qscintilla-qt5}/${py.pkgs.python.sitePackages}/PyQt5/bindings"
|
"-DQSCI_SIP_DIR=${py.pkgs.qscintilla-qt5}/${py.pkgs.python.sitePackages}/PyQt5/bindings"
|
||||||
] ++ lib.optional (!withWebKit) "-DWITH_QTWEBKIT=OFF"
|
] ++ lib.optional (!withWebKit) "-DWITH_QTWEBKIT=OFF"
|
||||||
@ -138,11 +143,11 @@ in mkDerivation rec {
|
|||||||
--prefix PATH : ${lib.makeBinPath [ grass ]}
|
--prefix PATH : ${lib.makeBinPath [ grass ]}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "A Free and Open Source Geographic Information System";
|
description = "A Free and Open Source Geographic Information System";
|
||||||
homepage = "https://www.qgis.org";
|
homepage = "https://www.qgis.org";
|
||||||
license = licenses.gpl2Plus;
|
license = lib.licenses.gpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = with lib.platforms; linux;
|
||||||
maintainers = with maintainers; [ lsix sikmir erictapen ];
|
maintainers = with lib.maintainers; [ lsix sikmir erictapen willcohen ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -69,14 +69,14 @@ let
|
|||||||
six
|
six
|
||||||
];
|
];
|
||||||
in mkDerivation rec {
|
in mkDerivation rec {
|
||||||
version = "3.22.3";
|
version = "3.24.0";
|
||||||
pname = "qgis-unwrapped";
|
pname = "qgis-unwrapped";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "qgis";
|
owner = "qgis";
|
||||||
repo = "QGIS";
|
repo = "QGIS";
|
||||||
rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}";
|
rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}";
|
||||||
sha256 = "TLXhXHU0dp0MnKHFw/+1rQnJbebnwje21Oasy0qWctk=";
|
sha256 = "sha256-EPF8sXAH7UAttLutxXGFovog3+XpXP0GXg2tu0mSU2s=";
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
@ -148,6 +148,6 @@ in mkDerivation rec {
|
|||||||
homepage = "https://www.qgis.org";
|
homepage = "https://www.qgis.org";
|
||||||
license = lib.licenses.gpl2Plus;
|
license = lib.licenses.gpl2Plus;
|
||||||
platforms = with lib.platforms; linux;
|
platforms = with lib.platforms; linux;
|
||||||
maintainers = with lib.maintainers; [ lsix sikmir erictapen ];
|
maintainers = with lib.maintainers; [ lsix sikmir erictapen willcohen ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -3,31 +3,15 @@
|
|||||||
let
|
let
|
||||||
defaultOverrides = [
|
defaultOverrides = [
|
||||||
(self: super: {
|
(self: super: {
|
||||||
flask = super.flask.overridePythonAttrs (oldAttrs: rec {
|
wtforms = super.wtforms.overridePythonAttrs (oldAttrs: rec {
|
||||||
version = "1.1.2";
|
version = "2.3.1";
|
||||||
pname = "Flask";
|
pname = "WTForms";
|
||||||
|
|
||||||
src = super.fetchPypi {
|
src = super.fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-Tvoa4tfJhlr0iYbeiuuFBL8yx/PW/ck1PTSyH0sScGA=";
|
sha256 = "sha256-hhoTs65SHWcA2sOydxlwvTVKY7pwQ+zDqCtSiFlqGXI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ self.pytest ];
|
|
||||||
propagatedBuildInputs = with self; [ itsdangerous click werkzeug jinja2 ];
|
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
});
|
|
||||||
})
|
|
||||||
|
|
||||||
(self: super: {
|
|
||||||
flask_login = super.flask_login.overridePythonAttrs (oldAttrs: rec {
|
|
||||||
pname = "Flask";
|
|
||||||
version = "0.5.0";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "6d33aef15b5bcead780acc339464aae8a6e28f13c90d8b1cf9de8b549d1c0b4b";
|
|
||||||
};
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
@ -45,7 +29,7 @@ let
|
|||||||
|
|
||||||
py = python3.override {
|
py = python3.override {
|
||||||
# Put packageOverrides at the start so they are applied after defaultOverrides
|
# Put packageOverrides at the start so they are applied after defaultOverrides
|
||||||
packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) (defaultOverrides);
|
packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) defaultOverrides;
|
||||||
};
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
@ -53,11 +37,11 @@ with py.pkgs;
|
|||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "archivy";
|
pname = "archivy";
|
||||||
version = "1.6.1";
|
version = "1.7.1";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-nwpH3V6hkPC8G3df+0hTZqvIbvT1Z796uOI/iKnXS1w=";
|
sha256 = "sha256-UNGl5Dl/E3+uQ4HIxzHYliHF4lqD3GYdeoL+DtqUwCo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Relax some dependencies
|
# Relax some dependencies
|
||||||
@ -72,7 +56,7 @@ buildPythonApplication rec {
|
|||||||
--replace 'validators ==' 'validators >=' \
|
--replace 'validators ==' 'validators >=' \
|
||||||
--replace 'tinydb ==' 'tinydb >=' \
|
--replace 'tinydb ==' 'tinydb >=' \
|
||||||
--replace 'Flask_WTF == 0.14.3' 'Flask_WTF' \
|
--replace 'Flask_WTF == 0.14.3' 'Flask_WTF' \
|
||||||
--replace 'Werkzeug ==' 'Werkzeug >='
|
--replace 'Flask ==' 'Flask >='
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
@ -87,11 +71,11 @@ buildPythonApplication rec {
|
|||||||
html2text
|
html2text
|
||||||
python-dotenv
|
python-dotenv
|
||||||
python-frontmatter
|
python-frontmatter
|
||||||
|
readability-lxml
|
||||||
requests
|
requests
|
||||||
setuptools
|
setuptools
|
||||||
tinydb
|
tinydb
|
||||||
validators
|
validators
|
||||||
werkzeug
|
|
||||||
wtforms
|
wtforms
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -23,15 +23,16 @@
|
|||||||
, xdg-utils
|
, xdg-utils
|
||||||
, removeReferencesTo
|
, removeReferencesTo
|
||||||
, libstemmer
|
, libstemmer
|
||||||
|
, wrapGAppsHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "calibre";
|
pname = "calibre";
|
||||||
version = "5.34.0";
|
version = "5.37.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz";
|
url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz";
|
||||||
hash = "sha256-1NQB7vrcU0hR308/8keUn/rHhdvJk5Ab0pOMPyiU1+M=";
|
hash = "sha256-x2u4v0k05WMATSsuo76NnqChIz8BcTuZfPkZa0uLnMY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# https://sources.debian.org/patches/calibre/${version}+dfsg-1
|
# https://sources.debian.org/patches/calibre/${version}+dfsg-1
|
||||||
@ -62,7 +63,7 @@ mkDerivation rec {
|
|||||||
|
|
||||||
dontUseQmakeConfigure = true;
|
dontUseQmakeConfigure = true;
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config qmake removeReferencesTo ];
|
nativeBuildInputs = [ pkg-config qmake removeReferencesTo wrapGAppsHook ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
chmlib
|
chmlib
|
||||||
@ -154,7 +155,6 @@ mkDerivation rec {
|
|||||||
|
|
||||||
# Wrap manually
|
# Wrap manually
|
||||||
dontWrapQtApps = true;
|
dontWrapQtApps = true;
|
||||||
dontWrapGApps = true;
|
|
||||||
|
|
||||||
# Remove some references to shrink the closure size. This reference (as of
|
# Remove some references to shrink the closure size. This reference (as of
|
||||||
# 2018-11-06) was a single string like the following:
|
# 2018-11-06) was a single string like the following:
|
||||||
@ -166,7 +166,6 @@ mkDerivation rec {
|
|||||||
for program in $out/bin/*; do
|
for program in $out/bin/*; do
|
||||||
wrapProgram $program \
|
wrapProgram $program \
|
||||||
''${qtWrapperArgs[@]} \
|
''${qtWrapperArgs[@]} \
|
||||||
''${gappsWrapperArgs[@]} \
|
|
||||||
--prefix PYTHONPATH : $PYTHONPATH \
|
--prefix PYTHONPATH : $PYTHONPATH \
|
||||||
--prefix PATH : ${poppler_utils.out}/bin
|
--prefix PATH : ${poppler_utils.out}/bin
|
||||||
done
|
done
|
||||||
|
@ -1,18 +1,23 @@
|
|||||||
{ lib, buildGoPackage, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "gsctl";
|
pname = "gsctl";
|
||||||
version = "0.15.4";
|
version = "1.1.4";
|
||||||
|
|
||||||
goPackagePath = "github.com/giantswarm/gsctl";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "giantswarm";
|
owner = "giantswarm";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0s5bli08wfd9xszx3kc90k51vlgjc00r0qg4mikb6qdc4pxpgsxj";
|
sha256 = "sha256-uCNWgaLZMm1vPxFduj8mpjKYuYlp1ChF6bK+bmAWy50=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-lZgHrQYqoyoM1Iv6vCqTMcv62zSKyxaAsq56kUXHrIA=";
|
||||||
|
|
||||||
|
ldflags =
|
||||||
|
[ "-s" "-w" "-X github.com/giantswarm/gsctl/buildinfo.Version=${version}" ];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "The Giant Swarm command line interface";
|
description = "The Giant Swarm command line interface";
|
||||||
homepage = "https://github.com/giantswarm/gsctl";
|
homepage = "https://github.com/giantswarm/gsctl";
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "natural-docs";
|
pname = "natural-docs";
|
||||||
version = "2.1.1";
|
version = "2.2";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = "https://naturaldocs.org/download/natural_docs/${version}/Natural_Docs_${version}.zip";
|
url = "https://naturaldocs.org/download/natural_docs/${version}/Natural_Docs_${version}.zip";
|
||||||
sha256 = "03fizjgvhiw3lqyykqw1whdh97xyiy3f226c1348ll61ryjxamqw";
|
sha256 = "sha256-W0E9wamzABnPleVhHHXTIdWJk8kWnrUHojM+pcsowy8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
dontPatch = true;
|
dontPatch = true;
|
||||||
|
@ -49,6 +49,9 @@ let
|
|||||||
k3sVersion = "1.23.3+k3s1"; # k3s git tag
|
k3sVersion = "1.23.3+k3s1"; # k3s git tag
|
||||||
k3sCommit = "6f4217a3405d16a1a51bbb40872d7dcb87207bb9"; # k3s git commit at the above version
|
k3sCommit = "6f4217a3405d16a1a51bbb40872d7dcb87207bb9"; # k3s git commit at the above version
|
||||||
k3sRepoSha256 = "sha256-0dRusG1vL+1KbmViIUNCZK1b+FEgV6otcVUyFonHmm4=";
|
k3sRepoSha256 = "sha256-0dRusG1vL+1KbmViIUNCZK1b+FEgV6otcVUyFonHmm4=";
|
||||||
|
k3sVendorSha256 = "sha256-8Yp9csyRNSYi9wo8E8mF8cu92wG1t3l18wJ8Y4L7HEA=";
|
||||||
|
|
||||||
|
k3sServerVendorSha256 = "sha256-9+2k/ipAOhc8JJU+L2dwaM01Dkw+0xyrF5kt6mL19G0=";
|
||||||
|
|
||||||
# taken from ./manifests/traefik.yaml, extracted from '.spec.chart' https://github.com/k3s-io/k3s/blob/v1.23.3%2Bk3s1/scripts/download#L9
|
# taken from ./manifests/traefik.yaml, extracted from '.spec.chart' https://github.com/k3s-io/k3s/blob/v1.23.3%2Bk3s1/scripts/download#L9
|
||||||
# The 'patch' and 'minor' versions are currently hardcoded as single digits only, so ignore the trailing two digits. Weird, I know.
|
# The 'patch' and 'minor' versions are currently hardcoded as single digits only, so ignore the trailing two digits. Weird, I know.
|
||||||
@ -65,17 +68,17 @@ let
|
|||||||
|
|
||||||
# taken from go.mod, the 'github.com/containerd/containerd' line
|
# taken from go.mod, the 'github.com/containerd/containerd' line
|
||||||
# run `grep github.com/containerd/containerd go.mod | head -n1 | awk '{print $4}'`
|
# run `grep github.com/containerd/containerd go.mod | head -n1 | awk '{print $4}'`
|
||||||
containerdVersion = "v1.5.9-k3s1";
|
containerdVersion = "1.5.9-k3s1";
|
||||||
containerdSha256 = "sha256-7xlhBA6KuwFlw+jyThygv4Ow9F3xjjIUtS6x8YHwjic=";
|
containerdSha256 = "sha256-7xlhBA6KuwFlw+jyThygv4Ow9F3xjjIUtS6x8YHwjic=";
|
||||||
|
|
||||||
# run `grep github.com/kubernetes-sigs/cri-tools go.mod | head -n1 | awk '{print $4}'` in the k3s repo at the tag
|
# run `grep github.com/kubernetes-sigs/cri-tools go.mod | head -n1 | awk '{print $4}'` in the k3s repo at the tag
|
||||||
criCtlVersion = "v1.22.0-k3s1";
|
criCtlVersion = "1.22.0-k3s1";
|
||||||
|
|
||||||
baseMeta = {
|
baseMeta = {
|
||||||
description = "A lightweight Kubernetes distribution";
|
description = "A lightweight Kubernetes distribution";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
homepage = "https://k3s.io";
|
homepage = "https://k3s.io";
|
||||||
maintainers = with maintainers; [ euank mic92 ];
|
maintainers = with maintainers; [ euank mic92 superherointj ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -91,10 +94,8 @@ let
|
|||||||
"-X k8s.io/component-base/version.gitCommit=${k3sCommit}"
|
"-X k8s.io/component-base/version.gitCommit=${k3sCommit}"
|
||||||
"-X k8s.io/component-base/version.gitTreeState=clean"
|
"-X k8s.io/component-base/version.gitTreeState=clean"
|
||||||
"-X k8s.io/component-base/version.buildDate=1970-01-01T01:01:01Z"
|
"-X k8s.io/component-base/version.buildDate=1970-01-01T01:01:01Z"
|
||||||
"-X github.com/kubernetes-sigs/cri-tools/pkg/version.Version=${criCtlVersion}"
|
"-X github.com/kubernetes-sigs/cri-tools/pkg/version.Version=v${criCtlVersion}"
|
||||||
"-X github.com/containerd/containerd/version.Version=${containerdVersion}"
|
"-X github.com/containerd/containerd/version.Version=v${containerdVersion}"
|
||||||
"-X github.com/containerd/containerd/version.Package=github.com/k3s-io/containerd"
|
|
||||||
"-X github.com/containerd/containerd/version.Version=${containerdVersion}"
|
|
||||||
"-X github.com/containerd/containerd/version.Package=github.com/k3s-io/containerd"
|
"-X github.com/containerd/containerd/version.Package=github.com/k3s-io/containerd"
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -168,12 +169,13 @@ let
|
|||||||
# strip/patchelf/remove-references step ourselves in the installPhase of the
|
# strip/patchelf/remove-references step ourselves in the installPhase of the
|
||||||
# derivation when we've built all the binaries, but haven't bundled them in
|
# derivation when we've built all the binaries, but haven't bundled them in
|
||||||
# with generated bindata yet.
|
# with generated bindata yet.
|
||||||
|
|
||||||
k3sServer = buildGoModule rec {
|
k3sServer = buildGoModule rec {
|
||||||
pname = "k3s-server";
|
pname = "k3s-server";
|
||||||
version = k3sVersion;
|
version = k3sVersion;
|
||||||
|
|
||||||
src = k3sRepo;
|
src = k3sRepo;
|
||||||
vendorSha256 = "sha256-9+2k/ipAOhc8JJU+L2dwaM01Dkw+0xyrF5kt6mL19G0=";
|
vendorSha256 = k3sServerVendorSha256;
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ libseccomp ];
|
buildInputs = [ libseccomp ];
|
||||||
@ -203,11 +205,11 @@ let
|
|||||||
};
|
};
|
||||||
k3sContainerd = buildGoModule {
|
k3sContainerd = buildGoModule {
|
||||||
pname = "k3s-containerd";
|
pname = "k3s-containerd";
|
||||||
version = k3sVersion;
|
version = containerdVersion;
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "k3s-io";
|
owner = "k3s-io";
|
||||||
repo = "containerd";
|
repo = "containerd";
|
||||||
rev = containerdVersion;
|
rev = "v${containerdVersion}";
|
||||||
sha256 = containerdSha256;
|
sha256 = containerdSha256;
|
||||||
};
|
};
|
||||||
vendorSha256 = null;
|
vendorSha256 = null;
|
||||||
@ -222,7 +224,7 @@ buildGoModule rec {
|
|||||||
|
|
||||||
src = k3sRepo;
|
src = k3sRepo;
|
||||||
proxyVendor = true;
|
proxyVendor = true;
|
||||||
vendorSha256 = "sha256-8Yp9csyRNSYi9wo8E8mF8cu92wG1t3l18wJ8Y4L7HEA=";
|
vendorSha256 = k3sVendorSha256;
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./patches/0001-scrips-download-strip-downloading-just-package-CRD.patch
|
./patches/0001-scrips-download-strip-downloading-just-package-CRD.patch
|
||||||
|
@ -1,12 +1,14 @@
|
|||||||
#!/usr/bin/env nix-shell
|
#!/usr/bin/env nix-shell
|
||||||
#!nix-shell -i bash -p curl gnugrep gnused jq
|
#!nix-shell -i bash -p curl gnugrep gnused jq yq-go nix-prefetch
|
||||||
|
|
||||||
set -x -eu -o pipefail
|
set -x -eu -o pipefail
|
||||||
|
|
||||||
WORKDIR=$(mktemp -d)
|
WORKDIR=$(mktemp -d)
|
||||||
trap "rm -rf ${WORKDIR}" EXIT
|
trap "rm -rf ${WORKDIR}" EXIT
|
||||||
|
|
||||||
cd $(dirname "${BASH_SOURCE[0]}")
|
NIXPKGS_ROOT="$(git rev-parse --show-toplevel)"/
|
||||||
|
NIXPKGS_K3S_FOLDER=${NIXPKGS_ROOT}$(dirname "${BASH_SOURCE[0]}")/
|
||||||
|
cd ${NIXPKGS_K3S_FOLDER}
|
||||||
|
|
||||||
LATEST_TAG_RAWFILE=${WORKDIR}/latest_tag.json
|
LATEST_TAG_RAWFILE=${WORKDIR}/latest_tag.json
|
||||||
curl --silent ${GITHUB_TOKEN:+"-u \":$GITHUB_TOKEN\""} \
|
curl --silent ${GITHUB_TOKEN:+"-u \":$GITHUB_TOKEN\""} \
|
||||||
@ -32,22 +34,33 @@ curl --silent https://raw.githubusercontent.com/k3s-io/k3s/${K3S_COMMIT}/scripts
|
|||||||
FILE_MANIFESTS_TRAEFIK=${WORKDIR}/manifests-traefik.yaml
|
FILE_MANIFESTS_TRAEFIK=${WORKDIR}/manifests-traefik.yaml
|
||||||
curl --silent https://raw.githubusercontent.com/k3s-io/k3s/${K3S_COMMIT}/manifests/traefik.yaml > $FILE_MANIFESTS_TRAEFIK
|
curl --silent https://raw.githubusercontent.com/k3s-io/k3s/${K3S_COMMIT}/manifests/traefik.yaml > $FILE_MANIFESTS_TRAEFIK
|
||||||
|
|
||||||
TRAEFIK_CHART_VERSION=$(awk -F/ '/traefik-([[:digit:]]+\.)/ {sub(/traefik-/, "", $6) ; sub(/\.tgz/, "", $6); print $6}' $FILE_MANIFESTS_TRAEFIK)
|
FILE_GO_MOD=${WORKDIR}/go.mod
|
||||||
|
curl --silent https://raw.githubusercontent.com/k3s-io/k3s/${K3S_COMMIT}/go.mod > $FILE_GO_MOD
|
||||||
|
|
||||||
|
TRAEFIK_CHART_VERSION=$(yq e '.spec.chart' $FILE_MANIFESTS_TRAEFIK | awk 'match($0, /([0-9.]+)([0-9]{2})/,
|
||||||
|
m) { print m[1]; exit; }')
|
||||||
TRAEFIK_CHART_SHA256=$(nix-prefetch-url --quiet "https://helm.traefik.io/traefik/traefik-${TRAEFIK_CHART_VERSION}.tgz")
|
TRAEFIK_CHART_SHA256=$(nix-prefetch-url --quiet "https://helm.traefik.io/traefik/traefik-${TRAEFIK_CHART_VERSION}.tgz")
|
||||||
|
|
||||||
K3S_ROOT_VERSION=$(grep 'ROOT_VERSION=' ${FILE_SCRIPTS_DOWNLOAD} \
|
K3S_ROOT_VERSION=$(grep 'VERSION_ROOT=' ${FILE_SCRIPTS_VERSION} \
|
||||||
| cut -d'=' -f2 | cut -d' ' -f1 | sed 's/^v//')
|
| cut -d'=' -f2 | sed -e 's/"//g' -e 's/^v//')
|
||||||
K3S_ROOT_SHA256=$(nix-prefetch-url --quiet --unpack \
|
K3S_ROOT_SHA256=$(nix-prefetch-url --quiet --unpack \
|
||||||
"https://github.com/k3s-io/k3s-root/releases/download/v${K3S_ROOT_VERSION}/k3s-root-amd64.tar")
|
"https://github.com/k3s-io/k3s-root/releases/download/v${K3S_ROOT_VERSION}/k3s-root-amd64.tar")
|
||||||
|
|
||||||
CNIPLUGINS_VERSION=$(grep 'VERSION_CNIPLUGINS=' ${FILE_SCRIPTS_VERSION} \
|
CNIPLUGINS_VERSION=$(grep 'VERSION_CNIPLUGINS=' ${FILE_SCRIPTS_VERSION} \
|
||||||
| cut -d'=' -f2 | cut -d' ' -f1 | sed -e 's/"//g' -e 's/^v//')
|
| cut -d'=' -f2 | sed -e 's/"//g' -e 's/^v//')
|
||||||
CNIPLUGINS_SHA256=$(nix-prefetch-url --quiet --unpack \
|
CNIPLUGINS_SHA256=$(nix-prefetch-url --quiet --unpack \
|
||||||
"https://github.com/rancher/plugins/archive/refs/tags/v${CNIPLUGINS_VERSION}.tar.gz")
|
"https://github.com/rancher/plugins/archive/refs/tags/v${CNIPLUGINS_VERSION}.tar.gz")
|
||||||
|
|
||||||
|
CONTAINERD_VERSION=$(grep github.com/containerd/containerd ${FILE_GO_MOD} \
|
||||||
|
| head -n1 | awk '{print $4}' | sed -e 's/"//g' -e 's/^v//')
|
||||||
|
CONTAINERD_SHA256=$(nix-prefetch-url --quiet --unpack \
|
||||||
|
"https://github.com/k3s-io/containerd/archive/refs/tags/v${CONTAINERD_VERSION}.tar.gz")
|
||||||
|
|
||||||
|
CRI_CTL_VERSION=$(grep github.com/kubernetes-sigs/cri-tools ${FILE_GO_MOD} \
|
||||||
|
| head -n1 | awk '{print $4}' | sed -e 's/"//g' -e 's/^v//')
|
||||||
|
|
||||||
setKV () {
|
setKV () {
|
||||||
sed -i "s|$1 = \".*\"|$1 = \"${2:-}\"|" ./default.nix
|
sed -i "s|$1 = \".*\"|$1 = \"${2:-}\"|" ${NIXPKGS_K3S_FOLDER}default.nix
|
||||||
}
|
}
|
||||||
|
|
||||||
setKV k3sVersion ${K3S_VERSION}
|
setKV k3sVersion ${K3S_VERSION}
|
||||||
@ -62,3 +75,32 @@ setKV k3sRootSha256 ${K3S_ROOT_SHA256}
|
|||||||
|
|
||||||
setKV k3sCNIVersion ${CNIPLUGINS_VERSION}
|
setKV k3sCNIVersion ${CNIPLUGINS_VERSION}
|
||||||
setKV k3sCNISha256 ${CNIPLUGINS_SHA256}
|
setKV k3sCNISha256 ${CNIPLUGINS_SHA256}
|
||||||
|
|
||||||
|
setKV containerdVersion ${CONTAINERD_VERSION}
|
||||||
|
setKV containerdSha256 ${CONTAINERD_SHA256}
|
||||||
|
|
||||||
|
setKV criCtlVersion ${CRI_CTL_VERSION}
|
||||||
|
|
||||||
|
setKV k3sServerVendorSha256 "0000000000000000000000000000000000000000000000000000"
|
||||||
|
|
||||||
|
set +e
|
||||||
|
K3S_SERVER_VENDOR_SHA256=$(nix-build ${NIXPKGS_ROOT} --no-out-link -A k3s 2>&1 >/dev/null | grep "got:" | cut -d':' -f2 | sed 's| ||g')
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ -n "${K3S_SERVER_VENDOR_SHA256:-}" ]; then
|
||||||
|
setKV k3sServerVendorSha256 ${K3S_SERVER_VENDOR_SHA256}
|
||||||
|
else
|
||||||
|
echo "Update failed. K3S_SERVER_VENDOR_SHA256 is empty."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
set +e
|
||||||
|
K3S_VENDOR_SHA256=$(nix-prefetch -I nixpkgs=${NIXPKGS_ROOT} "{ sha256 }: (import ${NIXPKGS_ROOT}. {}).k3s.go-modules.overrideAttrs (_: { vendorSha256 = sha256; })")
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ -n "${K3S_VENDOR_SHA256:-}" ]; then
|
||||||
|
setKV k3sVendorSha256 ${K3S_VENDOR_SHA256}
|
||||||
|
else
|
||||||
|
echo "Update failed. K3S_VENDOR_SHA256 is empty."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "catgirl";
|
pname = "catgirl";
|
||||||
version = "2.0a";
|
version = "2.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://git.causal.agency/catgirl/snapshot/${pname}-${version}.tar.gz";
|
url = "https://git.causal.agency/catgirl/snapshot/${pname}-${version}.tar.gz";
|
||||||
sha256 = "sha256-AbzzTqaulPDplntwRYw4fVxZXUIJ2L0MKZvyWq4lvro=";
|
sha256 = "sha256-pov7gvYlvN97xbem4VKP41Wbze1B8NPJcvi36Ri87o4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# catgirl's configure script uses pkg-config --variable exec_prefix openssl
|
# catgirl's configure script uses pkg-config --variable exec_prefix openssl
|
||||||
|
15
pkgs/applications/networking/misc/zammad/0001-nulldb.patch
Normal file
15
pkgs/applications/networking/misc/zammad/0001-nulldb.patch
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
diff --git a/config/application.rb b/config/application.rb
|
||||||
|
index d85a17491..90ea5e387 100644
|
||||||
|
--- a/config/application.rb
|
||||||
|
+++ b/config/application.rb
|
||||||
|
@@ -3,6 +3,7 @@
|
||||||
|
require_relative 'boot'
|
||||||
|
|
||||||
|
require 'rails/all'
|
||||||
|
+require 'nulldb'
|
||||||
|
require_relative 'issue_2656_workaround_for_rails_issue_33600'
|
||||||
|
|
||||||
|
# DO NOT REMOVE THIS LINE - see issue #2037
|
||||||
|
diff --git a/db/schema.rb b/db/schema.rb
|
||||||
|
new file mode 100644
|
||||||
|
index 000000000..e69de29bb
|
137
pkgs/applications/networking/misc/zammad/default.nix
Normal file
137
pkgs/applications/networking/misc/zammad/default.nix
Normal file
@ -0,0 +1,137 @@
|
|||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, applyPatches
|
||||||
|
, bundlerEnv
|
||||||
|
, defaultGemConfig
|
||||||
|
, callPackage
|
||||||
|
, writeText
|
||||||
|
, procps
|
||||||
|
, ruby_2_7
|
||||||
|
, postgresql
|
||||||
|
, imlib2
|
||||||
|
, nodejs
|
||||||
|
, yarn
|
||||||
|
, yarn2nix-moretea
|
||||||
|
, v8
|
||||||
|
, cacert
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
pname = "zammad";
|
||||||
|
version = "5.0.2";
|
||||||
|
|
||||||
|
src = applyPatches {
|
||||||
|
|
||||||
|
src = fetchFromGitHub (lib.importJSON ./source.json);
|
||||||
|
|
||||||
|
patches = [ ./0001-nulldb.patch ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
sed -i -e "s|ruby '2.7.4'|ruby '${ruby_2_7.version}'|" Gemfile
|
||||||
|
sed -i -e "s|ruby 2.7.4p191|ruby ${ruby_2_7.version}|" Gemfile.lock
|
||||||
|
sed -i -e "s|2.7.4|${ruby_2_7.version}|" .ruby-version
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
databaseConfig = writeText "database.yml" ''
|
||||||
|
production:
|
||||||
|
url: <%= ENV['DATABASE_URL'] %>
|
||||||
|
'';
|
||||||
|
|
||||||
|
secretsConfig = writeText "secrets.yml" ''
|
||||||
|
production:
|
||||||
|
secret_key_base: <%= ENV['SECRET_KEY_BASE'] %>
|
||||||
|
'';
|
||||||
|
|
||||||
|
rubyEnv = bundlerEnv {
|
||||||
|
name = "${pname}-gems-${version}";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
# Which ruby version to select:
|
||||||
|
# https://docs.zammad.org/en/latest/prerequisites/software.html#ruby-programming-language
|
||||||
|
inherit ruby_2_7;
|
||||||
|
|
||||||
|
gemdir = src;
|
||||||
|
gemset = ./gemset.nix;
|
||||||
|
groups = [
|
||||||
|
"assets"
|
||||||
|
"unicorn" # server
|
||||||
|
"nulldb"
|
||||||
|
"test"
|
||||||
|
"mysql"
|
||||||
|
"puma"
|
||||||
|
"development"
|
||||||
|
"postgres" # database
|
||||||
|
];
|
||||||
|
gemConfig = defaultGemConfig // {
|
||||||
|
pg = attrs: {
|
||||||
|
buildFlags = [ "--with-pg-config=${postgresql}/bin/pg_config" ];
|
||||||
|
};
|
||||||
|
rszr = attrs: {
|
||||||
|
buildInputs = [ imlib2 imlib2.dev ];
|
||||||
|
};
|
||||||
|
mini_racer = attrs: {
|
||||||
|
buildFlags = [
|
||||||
|
"--with-v8-dir=\"${v8}\""
|
||||||
|
];
|
||||||
|
dontBuild = false;
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace ext/mini_racer_extension/extconf.rb \
|
||||||
|
--replace Libv8.configure_makefile '$CPPFLAGS += " -x c++"; Libv8.configure_makefile'
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
yarnEnv = yarn2nix-moretea.mkYarnPackage {
|
||||||
|
pname = "${pname}-node-modules";
|
||||||
|
inherit version src;
|
||||||
|
yarnLock = ./yarn.lock;
|
||||||
|
yarnNix = ./yarn.nix;
|
||||||
|
packageJSON = ./package.json;
|
||||||
|
};
|
||||||
|
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
inherit pname version src;
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
rubyEnv
|
||||||
|
rubyEnv.wrappedRuby
|
||||||
|
rubyEnv.bundler
|
||||||
|
yarn
|
||||||
|
nodejs
|
||||||
|
procps
|
||||||
|
cacert
|
||||||
|
];
|
||||||
|
|
||||||
|
RAILS_ENV = "production";
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
node_modules=${yarnEnv}/libexec/Zammad/node_modules
|
||||||
|
${yarn2nix-moretea.linkNodeModulesHook}
|
||||||
|
|
||||||
|
rake DATABASE_URL="nulldb://user:pass@127.0.0.1/dbname" assets:precompile
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
cp -R . $out
|
||||||
|
cp ${databaseConfig} $out/config/database.yml
|
||||||
|
cp ${secretsConfig} $out/config/secrets.yml
|
||||||
|
sed -i -e "s|info|debug|" $out/config/environments/production.rb
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
inherit rubyEnv yarnEnv;
|
||||||
|
updateScript = [ "${callPackage ./update.nix {}}/bin/update.sh" pname (toString ./.) ];
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Zammad, a web-based, open source user support/ticketing solution.";
|
||||||
|
homepage = "https://zammad.org";
|
||||||
|
license = licenses.agpl3Plus;
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
maintainers = with maintainers; [ n0emis garbas taeer ];
|
||||||
|
};
|
||||||
|
}
|
2834
pkgs/applications/networking/misc/zammad/gemset.nix
Normal file
2834
pkgs/applications/networking/misc/zammad/gemset.nix
Normal file
File diff suppressed because it is too large
Load Diff
14
pkgs/applications/networking/misc/zammad/package.json
Normal file
14
pkgs/applications/networking/misc/zammad/package.json
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"name": "Zammad",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"devDependencies": {
|
||||||
|
"gulp": "^3.8.11",
|
||||||
|
"gulp-cheerio": "^0.6.2",
|
||||||
|
"gulp-rename": "^1.2.2",
|
||||||
|
"gulp-svgmin": "^1.1.2",
|
||||||
|
"gulp-svgstore": "^5.0.1",
|
||||||
|
"gulp-util": "^3.0.4",
|
||||||
|
"gulp-watch": "^4.2.4",
|
||||||
|
"through2": "^0.6.5"
|
||||||
|
}
|
||||||
|
}
|
7
pkgs/applications/networking/misc/zammad/source.json
Normal file
7
pkgs/applications/networking/misc/zammad/source.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"owner": "zammad",
|
||||||
|
"repo": "zammad",
|
||||||
|
"rev": "ad12ad4e01f5e6d1d58da019107b66e562ae463c",
|
||||||
|
"sha256": "i50A0/dBsdvv7L/fZiA1LvJEcO3OghjjgwS/7oFjk2o=",
|
||||||
|
"fetchSubmodules": true
|
||||||
|
}
|
35
pkgs/applications/networking/misc/zammad/update.nix
Normal file
35
pkgs/applications/networking/misc/zammad/update.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, makeWrapper
|
||||||
|
, bundix
|
||||||
|
, common-updater-scripts
|
||||||
|
, nix-prefetch-github
|
||||||
|
, yarn
|
||||||
|
, yarn2nix
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "zammad-update-script";
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp ${./update.sh} $out/bin/update.sh
|
||||||
|
patchShebangs $out/bin/update.sh
|
||||||
|
wrapProgram $out/bin/update.sh --prefix PATH : ${lib.makeBinPath buildInputs}
|
||||||
|
'';
|
||||||
|
phases = [ "installPhase" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
buildInputs = [
|
||||||
|
bundix
|
||||||
|
common-updater-scripts
|
||||||
|
nix-prefetch-github
|
||||||
|
yarn
|
||||||
|
yarn2nix
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
maintainers = with lib.maintainers; [ n0emis ];
|
||||||
|
description = "Utility to generate Nix expressions for Zammad's dependencies";
|
||||||
|
platforms = lib.platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
68
pkgs/applications/networking/misc/zammad/update.sh
Executable file
68
pkgs/applications/networking/misc/zammad/update.sh
Executable file
@ -0,0 +1,68 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
if [ "$#" -gt 2 ] || [[ "$1" == -* ]]; then
|
||||||
|
echo "Regenerates packaging data for the zammad packages."
|
||||||
|
echo "Usage: $0 [package name] [zammad directory in nixpkgs]"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
VERSION=$(curl -s https://ftp.zammad.com/ | grep -v latest | grep tar.gz | sed "s/<a href=\".*\">zammad-//" | sort -h | tail -n 1 | awk '{print $1}' | sed 's/.tar.gz<\/a>//')
|
||||||
|
TARGET_DIR="$2"
|
||||||
|
WORK_DIR=$(mktemp -d)
|
||||||
|
SOURCE_DIR=$WORK_DIR/zammad-$VERSION
|
||||||
|
|
||||||
|
pushd $TARGET_DIR
|
||||||
|
|
||||||
|
rm -rf \
|
||||||
|
./source.json \
|
||||||
|
./gemset.nix \
|
||||||
|
./yarn.lock \
|
||||||
|
./yarn.nix
|
||||||
|
|
||||||
|
|
||||||
|
# Check that working directory was created.
|
||||||
|
if [[ ! "$WORK_DIR" || ! -d "$WORK_DIR" ]]; then
|
||||||
|
echo "Could not create temporary directory."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Delete the working directory on exit.
|
||||||
|
function cleanup {
|
||||||
|
rm -rf "$WORK_DIR"
|
||||||
|
}
|
||||||
|
trap cleanup EXIT
|
||||||
|
|
||||||
|
|
||||||
|
pushd $WORK_DIR
|
||||||
|
|
||||||
|
echo ":: Creating source.json"
|
||||||
|
nix-prefetch-github zammad zammad --rev $VERSION --json > $TARGET_DIR/source.json
|
||||||
|
echo >> $TARGET_DIR/source.json
|
||||||
|
|
||||||
|
echo ":: Fetching source"
|
||||||
|
curl -L https://github.com/zammad/zammad/archive/$VERSION.tar.gz --output source.tar.gz
|
||||||
|
tar zxf source.tar.gz
|
||||||
|
|
||||||
|
if [[ ! "$SOURCE_DIR" || ! -d "$SOURCE_DIR" ]]; then
|
||||||
|
echo "Source directory does not exists."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
pushd $SOURCE_DIR
|
||||||
|
|
||||||
|
echo ":: Creating gemset.nix"
|
||||||
|
bundix --lockfile=./Gemfile.lock --gemfile=./Gemfile --gemset=$TARGET_DIR/gemset.nix
|
||||||
|
|
||||||
|
echo ":: Creating yarn.nix"
|
||||||
|
yarn install
|
||||||
|
cp yarn.lock $TARGET_DIR
|
||||||
|
yarn2nix > $TARGET_DIR/yarn.nix
|
||||||
|
|
||||||
|
# needed to avoid import from derivation
|
||||||
|
cp package.json $TARGET_DIR
|
||||||
|
|
||||||
|
popd
|
||||||
|
popd
|
||||||
|
popd
|
2347
pkgs/applications/networking/misc/zammad/yarn.lock
Normal file
2347
pkgs/applications/networking/misc/zammad/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
2669
pkgs/applications/networking/misc/zammad/yarn.nix
Normal file
2669
pkgs/applications/networking/misc/zammad/yarn.nix
Normal file
File diff suppressed because it is too large
Load Diff
@ -12,36 +12,33 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
useDune2 = true;
|
useDune2 = true;
|
||||||
|
|
||||||
nativeBuildInputs = [ which ];
|
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
let alt-ergo-lib = ocamlPackages.buildDunePackage rec {
|
let alt-ergo-lib = ocamlPackages.buildDunePackage rec {
|
||||||
pname = "alt-ergo-lib";
|
pname = "alt-ergo-lib";
|
||||||
inherit version src useDune2 nativeBuildInputs;
|
inherit version src useDune2;
|
||||||
configureFlags = pname;
|
configureFlags = pname;
|
||||||
|
nativeBuildInputs = [ which ];
|
||||||
buildInputs = with ocamlPackages; [ dune-configurator ];
|
buildInputs = with ocamlPackages; [ dune-configurator ];
|
||||||
propagatedBuildInputs = with ocamlPackages; [ num ocplib-simplex stdlib-shims zarith ];
|
propagatedBuildInputs = with ocamlPackages; [ num ocplib-simplex stdlib-shims zarith ];
|
||||||
}; in
|
}; in
|
||||||
|
|
||||||
let alt-ergo-parsers = ocamlPackages.buildDunePackage rec {
|
let alt-ergo-parsers = ocamlPackages.buildDunePackage rec {
|
||||||
pname = "alt-ergo-parsers";
|
pname = "alt-ergo-parsers";
|
||||||
inherit version src useDune2 nativeBuildInputs;
|
inherit version src useDune2;
|
||||||
configureFlags = pname;
|
configureFlags = pname;
|
||||||
buildInputs = with ocamlPackages; [ menhir ];
|
nativeBuildInputs = [ which ocamlPackages.menhir ];
|
||||||
propagatedBuildInputs = [ alt-ergo-lib ] ++ (with ocamlPackages; [ camlzip psmt2-frontend ]);
|
propagatedBuildInputs = [ alt-ergo-lib ] ++ (with ocamlPackages; [ camlzip psmt2-frontend ]);
|
||||||
}; in
|
}; in
|
||||||
|
|
||||||
ocamlPackages.buildDunePackage {
|
ocamlPackages.buildDunePackage {
|
||||||
|
|
||||||
inherit pname version src useDune2 nativeBuildInputs;
|
inherit pname version src useDune2;
|
||||||
|
|
||||||
configureFlags = pname;
|
configureFlags = pname;
|
||||||
|
|
||||||
buildInputs = [ alt-ergo-parsers ] ++ (with ocamlPackages; [
|
nativeBuildInputs = [ which ocamlPackages.menhir ];
|
||||||
cmdliner menhir ])
|
buildInputs = [ alt-ergo-parsers ocamlPackages.cmdliner ];
|
||||||
;
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "High-performance theorem prover and SMT solver";
|
description = "High-performance theorem prover and SMT solver";
|
||||||
|
@ -13,7 +13,10 @@ ocamlPackages.buildDunePackage rec {
|
|||||||
sha256 = "sha256-JUiZoo2rNLfgs94TlJqUNzul/7ODisCjSFAzhgSp1z4=";
|
sha256 = "sha256-JUiZoo2rNLfgs94TlJqUNzul/7ODisCjSFAzhgSp1z4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with ocamlPackages; [ zarith menhir ];
|
strictDeps = true;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ ocamlPackages.menhir ];
|
||||||
|
buildInputs = [ ocamlPackages.zarith ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Modal Homotopy Type System";
|
description = "Modal Homotopy Type System";
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
{ pkgs
|
{ pkgs
|
||||||
, withDoc ? false
|
, withDoc ? false
|
||||||
|
, requireSageTests ? true
|
||||||
|
, extraPythonPackages ? ps: []
|
||||||
}:
|
}:
|
||||||
|
|
||||||
# Here sage and its dependencies are put together. Some dependencies may be pinned
|
# Here sage and its dependencies are put together. Some dependencies may be pinned
|
||||||
@ -109,7 +111,7 @@ let
|
|||||||
rpy2
|
rpy2
|
||||||
sphinx
|
sphinx
|
||||||
pillow
|
pillow
|
||||||
];
|
] ++ extraPythonPackages python3.pkgs;
|
||||||
|
|
||||||
pythonEnv = python3.buildEnv.override {
|
pythonEnv = python3.buildEnv.override {
|
||||||
extraLibs = pythonRuntimeDeps;
|
extraLibs = pythonRuntimeDeps;
|
||||||
@ -166,5 +168,5 @@ in
|
|||||||
# A wrapper around sage that makes sure sage finds its docs (if they were build).
|
# A wrapper around sage that makes sure sage finds its docs (if they were build).
|
||||||
callPackage ./sage.nix {
|
callPackage ./sage.nix {
|
||||||
inherit sage-tests sage-with-env sagedoc jupyter-kernel-definition;
|
inherit sage-tests sage-with-env sagedoc jupyter-kernel-definition;
|
||||||
inherit withDoc;
|
inherit withDoc requireSageTests;
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
, jupyter-kernel
|
, jupyter-kernel
|
||||||
, sagedoc
|
, sagedoc
|
||||||
, withDoc
|
, withDoc
|
||||||
|
, requireSageTests
|
||||||
}:
|
}:
|
||||||
|
|
||||||
# A wrapper that makes sure sage finds its docs (if they were build) and the
|
# A wrapper that makes sure sage finds its docs (if they were build) and the
|
||||||
@ -26,7 +27,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
makeWrapper
|
makeWrapper
|
||||||
|
] ++ lib.optionals requireSageTests [
|
||||||
# This is a hack to make sure sage-tests is evaluated. It doesn't acutally
|
# This is a hack to make sure sage-tests is evaluated. It doesn't acutally
|
||||||
# produce anything of value, it just decouples the tests from the build.
|
# produce anything of value, it just decouples the tests from the build.
|
||||||
sage-tests
|
sage-tests
|
||||||
|
@ -41,7 +41,7 @@ let
|
|||||||
basePkgs = with pkgs;
|
basePkgs = with pkgs;
|
||||||
[ glibcLocales
|
[ glibcLocales
|
||||||
(if isMultiBuild then glibc_multi else glibc)
|
(if isMultiBuild then glibc_multi else glibc)
|
||||||
(toString gcc.cc.lib) bashInteractive coreutils less shadow su
|
(toString gcc.cc.lib) bashInteractiveFHS coreutils less shadow su
|
||||||
gawk diffutils findutils gnused gnugrep
|
gawk diffutils findutils gnused gnugrep
|
||||||
gnutar gzip bzip2 xz
|
gnutar gzip bzip2 xz
|
||||||
];
|
];
|
||||||
|
@ -45,7 +45,7 @@ let
|
|||||||
basePkgs = with pkgs;
|
basePkgs = with pkgs;
|
||||||
[ glibcLocales
|
[ glibcLocales
|
||||||
(if isMultiBuild then glibc_multi else glibc)
|
(if isMultiBuild then glibc_multi else glibc)
|
||||||
(toString gcc.cc.lib) bashInteractive coreutils less shadow su
|
(toString gcc.cc.lib) bashInteractiveFHS coreutils less shadow su
|
||||||
gawk diffutils findutils gnused gnugrep
|
gawk diffutils findutils gnused gnugrep
|
||||||
gnutar gzip bzip2 xz
|
gnutar gzip bzip2 xz
|
||||||
];
|
];
|
||||||
|
@ -21,6 +21,8 @@ stdenv.mkDerivation (args // {
|
|||||||
|
|
||||||
nativeBuildInputs = [ ocaml findlib ocamlbuild camlp4 ] ++ nativeBuildInputs;
|
nativeBuildInputs = [ ocaml findlib ocamlbuild camlp4 ] ++ nativeBuildInputs;
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
setupHook = if setupHook == null && hasSharedObjects
|
setupHook = if setupHook == null && hasSharedObjects
|
||||||
then writeText "setupHook.sh" ''
|
then writeText "setupHook.sh" ''
|
||||||
export CAML_LD_LIBRARY_PATH="''${CAML_LD_LIBRARY_PATH-}''${CAML_LD_LIBRARY_PATH:+:}''$1/lib/ocaml/${ocaml.version}/site-lib/${pname}/"
|
export CAML_LD_LIBRARY_PATH="''${CAML_LD_LIBRARY_PATH-}''${CAML_LD_LIBRARY_PATH:+:}''$1/lib/ocaml/${ocaml.version}/site-lib/${pname}/"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ lib, stdenv, ocaml_oasis, ocaml, findlib, ocamlbuild }:
|
{ lib, stdenv, ocaml_oasis, ocaml, findlib, ocamlbuild }:
|
||||||
|
|
||||||
{ pname, version, buildInputs ? [], meta ? { platforms = ocaml.meta.platforms or []; },
|
{ pname, version, nativeBuildInputs ? [], meta ? { platforms = ocaml.meta.platforms or []; },
|
||||||
minimumOCamlVersion ? null,
|
minimumOCamlVersion ? null,
|
||||||
createFindlibDestdir ? true,
|
createFindlibDestdir ? true,
|
||||||
dontStrip ? true,
|
dontStrip ? true,
|
||||||
@ -15,11 +15,13 @@ else
|
|||||||
stdenv.mkDerivation (args // {
|
stdenv.mkDerivation (args // {
|
||||||
name = "ocaml${ocaml.version}-${pname}-${version}";
|
name = "ocaml${ocaml.version}-${pname}-${version}";
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib ocamlbuild ocaml_oasis ] ++ buildInputs;
|
nativeBuildInputs = [ ocaml findlib ocamlbuild ocaml_oasis ] ++ nativeBuildInputs;
|
||||||
|
|
||||||
inherit createFindlibDestdir;
|
inherit createFindlibDestdir;
|
||||||
inherit dontStrip;
|
inherit dontStrip;
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
runHook preBuild
|
runHook preBuild
|
||||||
oasis setup
|
oasis setup
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ lib, fetchFromGitHub }:
|
{ lib, fetchFromGitHub }:
|
||||||
let
|
let
|
||||||
version = "2.3.2";
|
version = "4.0.2";
|
||||||
in
|
in
|
||||||
fetchFromGitHub {
|
fetchFromGitHub {
|
||||||
name = "redhat-official-${version}";
|
name = "redhat-official-${version}";
|
||||||
@ -11,11 +11,13 @@ fetchFromGitHub {
|
|||||||
|
|
||||||
postFetch = ''
|
postFetch = ''
|
||||||
tar xf $downloadedFile --strip=1
|
tar xf $downloadedFile --strip=1
|
||||||
install -m444 -Dt $out/share/fonts/opentype OTF/*.otf
|
for kind in mono proportional; do
|
||||||
install -m444 -Dt $out/share/fonts/truetype TTF/*.ttf
|
install -m444 -Dt $out/share/fonts/opentype fonts/$kind/static/otf/*.otf
|
||||||
|
install -m444 -Dt $out/share/fonts/truetype fonts/$kind/static/ttf/*.ttf
|
||||||
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
sha256 = "1afvxmgif61hb17g8inmxvq30vkzwh30mydlqpf0zgvaaz8qdwmv";
|
sha256 = "sha256-904uQtbAdLx9MJudLk/vVk/+uK0nsPbWbAeXrWxTHm8=";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/RedHatOfficial/RedHatFont";
|
homepage = "https://github.com/RedHatOfficial/RedHatFont";
|
||||||
|
@ -11,20 +11,26 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "sha256-bK3McF/wTjT9q6luihPaEXjx7Lu6+ZbQ9G61Mc4KoB0=";
|
sha256 = "sha256-bK3McF/wTjT9q6luihPaEXjx7Lu6+ZbQ9G61Mc4KoB0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
strictDeps = true;
|
||||||
|
|
||||||
buildInputs = [
|
nativeBuildInputs = [
|
||||||
z3
|
makeWrapper
|
||||||
|
installShellFiles
|
||||||
] ++ (with ocamlPackages; [
|
] ++ (with ocamlPackages; [
|
||||||
ocaml
|
ocaml
|
||||||
findlib
|
findlib
|
||||||
ocamlbuild
|
ocamlbuild
|
||||||
|
menhir
|
||||||
|
]);
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
z3
|
||||||
|
] ++ (with ocamlPackages; [
|
||||||
batteries
|
batteries
|
||||||
zarith
|
zarith
|
||||||
stdint
|
stdint
|
||||||
yojson
|
yojson
|
||||||
fileutils
|
fileutils
|
||||||
menhir
|
|
||||||
menhirLib
|
menhirLib
|
||||||
pprint
|
pprint
|
||||||
sedlex_2
|
sedlex_2
|
||||||
|
29
pkgs/development/compilers/llvm/14/bintools/default.nix
Normal file
29
pkgs/development/compilers/llvm/14/bintools/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ runCommand, stdenv, llvm, lld, version }:
|
||||||
|
|
||||||
|
let
|
||||||
|
prefix =
|
||||||
|
if stdenv.hostPlatform != stdenv.targetPlatform
|
||||||
|
then "${stdenv.targetPlatform.config}-"
|
||||||
|
else "";
|
||||||
|
in runCommand "llvm-binutils-${version}" { preferLocalBuild = true; } ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
for prog in ${lld}/bin/*; do
|
||||||
|
ln -s $prog $out/bin/${prefix}$(basename $prog)
|
||||||
|
done
|
||||||
|
for prog in ${llvm}/bin/*; do
|
||||||
|
ln -sf $prog $out/bin/${prefix}$(basename $prog)
|
||||||
|
done
|
||||||
|
|
||||||
|
ln -s ${llvm}/bin/llvm-ar $out/bin/${prefix}ar
|
||||||
|
ln -s ${llvm}/bin/llvm-as $out/bin/${prefix}as
|
||||||
|
ln -s ${llvm}/bin/llvm-dwp $out/bin/${prefix}dwp
|
||||||
|
ln -s ${llvm}/bin/llvm-nm $out/bin/${prefix}nm
|
||||||
|
ln -s ${llvm}/bin/llvm-objcopy $out/bin/${prefix}objcopy
|
||||||
|
ln -s ${llvm}/bin/llvm-objdump $out/bin/${prefix}objdump
|
||||||
|
ln -s ${llvm}/bin/llvm-ranlib $out/bin/${prefix}ranlib
|
||||||
|
ln -s ${llvm}/bin/llvm-readelf $out/bin/${prefix}readelf
|
||||||
|
ln -s ${llvm}/bin/llvm-size $out/bin/${prefix}size
|
||||||
|
ln -s ${llvm}/bin/llvm-strip $out/bin/${prefix}strip
|
||||||
|
|
||||||
|
ln -s ${lld}/bin/lld $out/bin/${prefix}ld
|
||||||
|
''
|
131
pkgs/development/compilers/llvm/14/clang/default.nix
Normal file
131
pkgs/development/compilers/llvm/14/clang/default.nix
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
{ lib, stdenv, llvm_meta
|
||||||
|
, monorepoSrc, runCommand
|
||||||
|
, substituteAll, cmake, libxml2, libllvm, version, python3
|
||||||
|
, buildLlvmTools
|
||||||
|
, fixDarwinDylibNames
|
||||||
|
, enableManpages ? false
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
self = stdenv.mkDerivation (rec {
|
||||||
|
pname = "clang";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
src = runCommand "${pname}-src-${version}" {} ''
|
||||||
|
mkdir -p "$out"
|
||||||
|
cp -r ${monorepoSrc}/cmake "$out"
|
||||||
|
cp -r ${monorepoSrc}/${pname} "$out"
|
||||||
|
'';
|
||||||
|
|
||||||
|
sourceRoot = "${src.name}/${pname}";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake python3 ]
|
||||||
|
++ lib.optional enableManpages python3.pkgs.sphinx
|
||||||
|
++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
||||||
|
|
||||||
|
buildInputs = [ libxml2 libllvm ];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DCMAKE_CXX_FLAGS=-std=c++14"
|
||||||
|
"-DCLANGD_BUILD_XPC=OFF"
|
||||||
|
"-DLLVM_ENABLE_RTTI=ON"
|
||||||
|
] ++ lib.optionals enableManpages [
|
||||||
|
"-DCLANG_INCLUDE_DOCS=ON"
|
||||||
|
"-DLLVM_ENABLE_SPHINX=ON"
|
||||||
|
"-DSPHINX_OUTPUT_MAN=ON"
|
||||||
|
"-DSPHINX_OUTPUT_HTML=OFF"
|
||||||
|
"-DSPHINX_WARNINGS_AS_ERRORS=OFF"
|
||||||
|
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
||||||
|
"-DLLVM_TABLEGEN_EXE=${buildLlvmTools.llvm}/bin/llvm-tblgen"
|
||||||
|
"-DCLANG_TABLEGEN=${buildLlvmTools.libclang.dev}/bin/clang-tblgen"
|
||||||
|
];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./purity.patch
|
||||||
|
# https://reviews.llvm.org/D51899
|
||||||
|
./gnu-install-dirs.patch
|
||||||
|
(substituteAll {
|
||||||
|
src = ../../clang-11-12-LLVMgold-path.patch;
|
||||||
|
libllvmLibdir = "${libllvm.lib}/lib";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
(cd tools && ln -s ../../clang-tools-extra extra)
|
||||||
|
|
||||||
|
sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' \
|
||||||
|
-e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' \
|
||||||
|
lib/Driver/ToolChains/*.cpp
|
||||||
|
|
||||||
|
# Patch for standalone doc building
|
||||||
|
sed -i '1s,^,find_package(Sphinx REQUIRED)\n,' docs/CMakeLists.txt
|
||||||
|
'' + lib.optionalString stdenv.hostPlatform.isMusl ''
|
||||||
|
sed -i -e 's/lgcc_s/lgcc_eh/' lib/Driver/ToolChains/*.cpp
|
||||||
|
'';
|
||||||
|
|
||||||
|
outputs = [ "out" "lib" "dev" "python" ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
ln -sv $out/bin/clang $out/bin/cpp
|
||||||
|
|
||||||
|
# Move libclang to 'lib' output
|
||||||
|
moveToOutput "lib/libclang.*" "$lib"
|
||||||
|
moveToOutput "lib/libclang-cpp.*" "$lib"
|
||||||
|
substituteInPlace $out/lib/cmake/clang/ClangTargets-release.cmake \
|
||||||
|
--replace "\''${_IMPORT_PREFIX}/lib/libclang." "$lib/lib/libclang." \
|
||||||
|
--replace "\''${_IMPORT_PREFIX}/lib/libclang-cpp." "$lib/lib/libclang-cpp."
|
||||||
|
|
||||||
|
mkdir -p $python/bin $python/share/clang/
|
||||||
|
mv $out/bin/{git-clang-format,scan-view} $python/bin
|
||||||
|
if [ -e $out/bin/set-xcode-analyzer ]; then
|
||||||
|
mv $out/bin/set-xcode-analyzer $python/bin
|
||||||
|
fi
|
||||||
|
mv $out/share/clang/*.py $python/share/clang
|
||||||
|
rm $out/bin/c-index-test
|
||||||
|
|
||||||
|
mkdir -p $dev/bin
|
||||||
|
cp bin/clang-tblgen $dev/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
isClang = true;
|
||||||
|
inherit libllvm;
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = llvm_meta // {
|
||||||
|
homepage = "https://clang.llvm.org/";
|
||||||
|
description = "A C language family frontend for LLVM";
|
||||||
|
longDescription = ''
|
||||||
|
The Clang project provides a language front-end and tooling
|
||||||
|
infrastructure for languages in the C language family (C, C++, Objective
|
||||||
|
C/C++, OpenCL, CUDA, and RenderScript) for the LLVM project.
|
||||||
|
It aims to deliver amazingly fast compiles, extremely useful error and
|
||||||
|
warning messages and to provide a platform for building great source
|
||||||
|
level tools. The Clang Static Analyzer and clang-tidy are tools that
|
||||||
|
automatically find bugs in your code, and are great examples of the sort
|
||||||
|
of tools that can be built using the Clang frontend as a library to
|
||||||
|
parse C/C++ code.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
} // lib.optionalAttrs enableManpages {
|
||||||
|
pname = "clang-manpages";
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
make docs-clang-man
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share/man/man1
|
||||||
|
# Manually install clang manpage
|
||||||
|
cp docs/man/*.1 $out/share/man/man1/
|
||||||
|
'';
|
||||||
|
|
||||||
|
outputs = [ "out" ];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = llvm_meta // {
|
||||||
|
description = "man page for Clang ${version}";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
in self
|
@ -0,0 +1,50 @@
|
|||||||
|
diff --git a/cmake/modules/AddClang.cmake b/cmake/modules/AddClang.cmake
|
||||||
|
index 9bbbfc032b7d..947bd0da865d 100644
|
||||||
|
--- a/cmake/modules/AddClang.cmake
|
||||||
|
+++ b/cmake/modules/AddClang.cmake
|
||||||
|
@@ -119,8 +119,8 @@ macro(add_clang_library name)
|
||||||
|
install(TARGETS ${lib}
|
||||||
|
COMPONENT ${lib}
|
||||||
|
${export_to_clangtargets}
|
||||||
|
- LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
|
||||||
|
- ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX}
|
||||||
|
+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}
|
||||||
|
+ ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}
|
||||||
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}")
|
||||||
|
|
||||||
|
if (NOT LLVM_ENABLE_IDE)
|
||||||
|
@@ -175,7 +175,7 @@ endmacro()
|
||||||
|
macro(add_clang_symlink name dest)
|
||||||
|
add_llvm_tool_symlink(${name} ${dest} ALWAYS_GENERATE)
|
||||||
|
# Always generate install targets
|
||||||
|
- llvm_install_symlink(${name} ${dest} ALWAYS_GENERATE)
|
||||||
|
+ llvm_install_symlink(${name} ${dest} ${CMAKE_INSTALL_FULL_BINDIR} ALWAYS_GENERATE)
|
||||||
|
endmacro()
|
||||||
|
|
||||||
|
function(clang_target_link_libraries target type)
|
||||||
|
diff --git a/lib/Headers/CMakeLists.txt b/lib/Headers/CMakeLists.txt
|
||||||
|
index 078988980c52..14b58614b40a 100644
|
||||||
|
--- a/lib/Headers/CMakeLists.txt
|
||||||
|
+++ b/lib/Headers/CMakeLists.txt
|
||||||
|
@@ -234,7 +234,7 @@ set_target_properties(clang-resource-headers PROPERTIES
|
||||||
|
FOLDER "Misc"
|
||||||
|
RUNTIME_OUTPUT_DIRECTORY "${output_dir}")
|
||||||
|
|
||||||
|
-set(header_install_dir lib${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION}/include)
|
||||||
|
+set(header_install_dir ${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION}/include)
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES ${files} ${generated_files}
|
||||||
|
diff --git a/tools/libclang/CMakeLists.txt b/tools/libclang/CMakeLists.txt
|
||||||
|
index 4e0647971ab4..68dd67fcc476 100644
|
||||||
|
--- a/tools/libclang/CMakeLists.txt
|
||||||
|
+++ b/tools/libclang/CMakeLists.txt
|
||||||
|
@@ -216,7 +216,7 @@ foreach(PythonVersion ${CLANG_PYTHON_BINDINGS_VERSIONS})
|
||||||
|
COMPONENT
|
||||||
|
libclang-python-bindings
|
||||||
|
DESTINATION
|
||||||
|
- "lib${LLVM_LIBDIR_SUFFIX}/python${PythonVersion}/site-packages")
|
||||||
|
+ "${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}/python${PythonVersion}/site-packages")
|
||||||
|
endforeach()
|
||||||
|
if(NOT LLVM_ENABLE_IDE)
|
||||||
|
add_custom_target(libclang-python-bindings)
|
28
pkgs/development/compilers/llvm/14/clang/purity.patch
Normal file
28
pkgs/development/compilers/llvm/14/clang/purity.patch
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
From 4add81bba40dcec62c4ea4481be8e35ac53e89d8 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Will Dietz <w@wdtz.org>
|
||||||
|
Date: Thu, 18 May 2017 11:56:12 -0500
|
||||||
|
Subject: [PATCH] "purity" patch for 5.0
|
||||||
|
|
||||||
|
---
|
||||||
|
lib/Driver/ToolChains/Gnu.cpp | 7 -------
|
||||||
|
1 file changed, 7 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/lib/Driver/ToolChains/Gnu.cpp b/lib/Driver/ToolChains/Gnu.cpp
|
||||||
|
index fe3c0191bb..c6a482bece 100644
|
||||||
|
--- a/lib/Driver/ToolChains/Gnu.cpp
|
||||||
|
+++ b/lib/Driver/ToolChains/Gnu.cpp
|
||||||
|
@@ -487,12 +487,6 @@ void tools::gnutools::Linker::ConstructJob(Compilation &C, const JobAction &JA,
|
||||||
|
if (!IsStatic) {
|
||||||
|
if (Args.hasArg(options::OPT_rdynamic))
|
||||||
|
CmdArgs.push_back("-export-dynamic");
|
||||||
|
-
|
||||||
|
- if (!Args.hasArg(options::OPT_shared) && !IsStaticPIE) {
|
||||||
|
- CmdArgs.push_back("-dynamic-linker");
|
||||||
|
- CmdArgs.push_back(Args.MakeArgString(Twine(D.DyldPrefix) +
|
||||||
|
- ToolChain.getDynamicLinker(Args)));
|
||||||
|
- }
|
||||||
|
}
|
||||||
|
|
||||||
|
CmdArgs.push_back("-o");
|
||||||
|
--
|
||||||
|
2.11.0
|
@ -0,0 +1,21 @@
|
|||||||
|
diff --git a/lib/builtins/CMakeLists.txt b/lib/builtins/CMakeLists.txt
|
||||||
|
index 3a66dd9c3fb..7efc85d9f9f 100644
|
||||||
|
--- a/lib/builtins/CMakeLists.txt
|
||||||
|
+++ b/lib/builtins/CMakeLists.txt
|
||||||
|
@@ -345,4 +345,8 @@ if (NOT MSVC)
|
||||||
|
|
||||||
|
+ set(i486_SOURCES ${i386_SOURCES})
|
||||||
|
+ set(i586_SOURCES ${i386_SOURCES})
|
||||||
|
+ set(i686_SOURCES ${i386_SOURCES})
|
||||||
|
+
|
||||||
|
if (WIN32)
|
||||||
|
set(i386_SOURCES
|
||||||
|
${i386_SOURCES}
|
||||||
|
@@ -608,6 +612,7 @@ else ()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
foreach (arch ${BUILTIN_SUPPORTED_ARCH})
|
||||||
|
+ message("arch: ${arch}")
|
||||||
|
if (CAN_TARGET_${arch})
|
||||||
|
# For ARM archs, exclude any VFP builtins if VFP is not supported
|
||||||
|
if (${arch} MATCHES "^(arm|armhf|armv7|armv7s|armv7k|armv7m|armv7em)$")
|
32
pkgs/development/compilers/llvm/14/compiler-rt/armv7l.patch
Normal file
32
pkgs/development/compilers/llvm/14/compiler-rt/armv7l.patch
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
diff -ur compiler-rt-10.0.0.src/cmake/builtin-config-ix.cmake compiler-rt-10.0.0.src-patched/cmake/builtin-config-ix.cmake
|
||||||
|
--- compiler-rt-10.0.0.src/cmake/builtin-config-ix.cmake 2020-03-24 00:01:02.000000000 +0900
|
||||||
|
+++ compiler-rt-10.0.0.src-patched/cmake/builtin-config-ix.cmake 2020-05-10 03:42:00.883450706 +0900
|
||||||
|
@@ -24,7 +24,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
set(ARM64 aarch64)
|
||||||
|
-set(ARM32 arm armhf armv6m armv7m armv7em armv7 armv7s armv7k)
|
||||||
|
+set(ARM32 arm armhf armv6m armv7m armv7em armv7 armv7s armv7k armv7l)
|
||||||
|
set(HEXAGON hexagon)
|
||||||
|
set(X86 i386)
|
||||||
|
set(X86_64 x86_64)
|
||||||
|
diff -ur compiler-rt-10.0.0.src/lib/builtins/CMakeLists.txt compiler-rt-10.0.0.src-patched/lib/builtins/CMakeLists.txt
|
||||||
|
--- compiler-rt-10.0.0.src/lib/builtins/CMakeLists.txt 2020-03-24 00:01:02.000000000 +0900
|
||||||
|
+++ compiler-rt-10.0.0.src-patched/lib/builtins/CMakeLists.txt 2020-05-10 03:44:49.468579650 +0900
|
||||||
|
@@ -474,6 +474,7 @@
|
||||||
|
set(armv7_SOURCES ${arm_SOURCES})
|
||||||
|
set(armv7s_SOURCES ${arm_SOURCES})
|
||||||
|
set(armv7k_SOURCES ${arm_SOURCES})
|
||||||
|
+set(armv7l_SOURCES ${arm_SOURCES})
|
||||||
|
set(arm64_SOURCES ${aarch64_SOURCES})
|
||||||
|
|
||||||
|
# macho_embedded archs
|
||||||
|
@@ -595,7 +596,7 @@
|
||||||
|
foreach (arch ${BUILTIN_SUPPORTED_ARCH})
|
||||||
|
if (CAN_TARGET_${arch})
|
||||||
|
# For ARM archs, exclude any VFP builtins if VFP is not supported
|
||||||
|
- if (${arch} MATCHES "^(arm|armhf|armv7|armv7s|armv7k|armv7m|armv7em)$")
|
||||||
|
+ if (${arch} MATCHES "^(arm|armhf|armv7|armv7s|armv7k|armv7l|armv7m|armv7em)$")
|
||||||
|
string(REPLACE ";" " " _TARGET_${arch}_CFLAGS "${TARGET_${arch}_CFLAGS}")
|
||||||
|
check_compile_definition(__VFP_FP__ "${CMAKE_C_FLAGS} ${_TARGET_${arch}_CFLAGS}" COMPILER_RT_HAS_${arch}_VFP)
|
||||||
|
if(NOT COMPILER_RT_HAS_${arch}_VFP)
|
@ -0,0 +1,33 @@
|
|||||||
|
From 3dec5f3475a26aeb4678627795c4b67c6b7b4785 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Will Dietz <w@wdtz.org>
|
||||||
|
Date: Tue, 19 Sep 2017 13:13:06 -0500
|
||||||
|
Subject: [PATCH] remove codesign use on Apple, disable ios sim testing that
|
||||||
|
needs it
|
||||||
|
|
||||||
|
---
|
||||||
|
cmake/Modules/AddCompilerRT.cmake | 8 ------
|
||||||
|
test/asan/CMakeLists.txt | 52 ---------------------------------------
|
||||||
|
test/tsan/CMakeLists.txt | 47 -----------------------------------
|
||||||
|
3 files changed, 107 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/cmake/Modules/AddCompilerRT.cmake b/cmake/Modules/AddCompilerRT.cmake
|
||||||
|
index bc69ec95c419..9f100fdcec2f 100644
|
||||||
|
--- a/cmake/Modules/AddCompilerRT.cmake
|
||||||
|
+++ b/cmake/Modules/AddCompilerRT.cmake
|
||||||
|
@@ -366,14 +366,6 @@ function(add_compiler_rt_runtime name type)
|
||||||
|
set_target_properties(${libname} PROPERTIES IMPORT_PREFIX "")
|
||||||
|
set_target_properties(${libname} PROPERTIES IMPORT_SUFFIX ".lib")
|
||||||
|
endif()
|
||||||
|
- if(APPLE)
|
||||||
|
- # Ad-hoc sign the dylibs
|
||||||
|
- add_custom_command(TARGET ${libname}
|
||||||
|
- POST_BUILD
|
||||||
|
- COMMAND codesign --sign - $<TARGET_FILE:${libname}>
|
||||||
|
- WORKING_DIRECTORY ${COMPILER_RT_OUTPUT_LIBRARY_DIR}
|
||||||
|
- )
|
||||||
|
- endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(parent_target_arg)
|
||||||
|
2.14.1
|
||||||
|
|
@ -0,0 +1,71 @@
|
|||||||
|
diff --git a/lib/sanitizer_common/sanitizer_mac.cpp b/lib/sanitizer_common/sanitizer_mac.cpp
|
||||||
|
--- a/lib/sanitizer_common/sanitizer_mac.cpp
|
||||||
|
+++ b/lib/sanitizer_common/sanitizer_mac.cpp
|
||||||
|
@@ -613,9 +613,15 @@ HandleSignalMode GetHandleSignalMode(int signum) {
|
||||||
|
// Offset example:
|
||||||
|
// XNU 17 -- macOS 10.13 -- iOS 11 -- tvOS 11 -- watchOS 4
|
||||||
|
constexpr u16 GetOSMajorKernelOffset() {
|
||||||
|
- if (TARGET_OS_OSX) return 4;
|
||||||
|
- if (TARGET_OS_IOS || TARGET_OS_TV) return 6;
|
||||||
|
- if (TARGET_OS_WATCH) return 13;
|
||||||
|
+#if TARGET_OS_OSX
|
||||||
|
+ return 4;
|
||||||
|
+#endif
|
||||||
|
+#if TARGET_OS_IOS || TARGET_OS_TV
|
||||||
|
+ return 6;
|
||||||
|
+#endif
|
||||||
|
+#if TARGET_OS_WATCH
|
||||||
|
+ return 13;
|
||||||
|
+#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
using VersStr = char[64];
|
||||||
|
@@ -627,13 +633,13 @@ static uptr ApproximateOSVersionViaKernelVersion(VersStr vers) {
|
||||||
|
u16 os_major = kernel_major - offset;
|
||||||
|
|
||||||
|
const char *format = "%d.0";
|
||||||
|
- if (TARGET_OS_OSX) {
|
||||||
|
- if (os_major >= 16) { // macOS 11+
|
||||||
|
- os_major -= 5;
|
||||||
|
- } else { // macOS 10.15 and below
|
||||||
|
- format = "10.%d";
|
||||||
|
- }
|
||||||
|
+#if TARGET_OS_OSX
|
||||||
|
+ if (os_major >= 16) { // macOS 11+
|
||||||
|
+ os_major -= 5;
|
||||||
|
+ } else { // macOS 10.15 and below
|
||||||
|
+ format = "10.%d";
|
||||||
|
}
|
||||||
|
+#endif
|
||||||
|
return internal_snprintf(vers, sizeof(VersStr), format, os_major);
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -681,15 +687,14 @@ void ParseVersion(const char *vers, u16 *major, u16 *minor) {
|
||||||
|
// Aligned versions example:
|
||||||
|
// macOS 10.15 -- iOS 13 -- tvOS 13 -- watchOS 6
|
||||||
|
static void MapToMacos(u16 *major, u16 *minor) {
|
||||||
|
- if (TARGET_OS_OSX)
|
||||||
|
- return;
|
||||||
|
-
|
||||||
|
- if (TARGET_OS_IOS || TARGET_OS_TV)
|
||||||
|
+#if !TARGET_OS_OSX
|
||||||
|
+#if TARGET_OS_IOS || TARGET_OS_TV
|
||||||
|
*major += 2;
|
||||||
|
- else if (TARGET_OS_WATCH)
|
||||||
|
+#elif TARGET_OS_WATCH
|
||||||
|
*major += 9;
|
||||||
|
- else
|
||||||
|
+#else
|
||||||
|
UNREACHABLE("unsupported platform");
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
if (*major >= 16) { // macOS 11+
|
||||||
|
*major -= 5;
|
||||||
|
@@ -697,6 +702,7 @@ static void MapToMacos(u16 *major, u16 *minor) {
|
||||||
|
*minor = *major;
|
||||||
|
*major = 10;
|
||||||
|
}
|
||||||
|
+#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static MacosVersion GetMacosAlignedVersionInternal() {
|
126
pkgs/development/compilers/llvm/14/compiler-rt/default.nix
Normal file
126
pkgs/development/compilers/llvm/14/compiler-rt/default.nix
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
{ lib, stdenv, llvm_meta, version
|
||||||
|
, monorepoSrc, runCommand
|
||||||
|
, cmake, python3, libllvm, libcxxabi
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
useLLVM = stdenv.hostPlatform.useLLVM or false;
|
||||||
|
bareMetal = stdenv.hostPlatform.parsed.kernel.name == "none";
|
||||||
|
haveLibc = stdenv.cc.libc != null;
|
||||||
|
inherit (stdenv.hostPlatform) isMusl;
|
||||||
|
|
||||||
|
baseName = "compiler-rt";
|
||||||
|
|
||||||
|
src = runCommand "${baseName}-src-${version}" {} ''
|
||||||
|
mkdir -p "$out"
|
||||||
|
cp -r ${monorepoSrc}/cmake "$out"
|
||||||
|
cp -r ${monorepoSrc}/${baseName} "$out"
|
||||||
|
'';
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = baseName + lib.optionalString (haveLibc) "-libc";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
inherit src;
|
||||||
|
sourceRoot = "${src.name}/${baseName}";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake python3 libllvm.dev ];
|
||||||
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
||||||
|
|
||||||
|
NIX_CFLAGS_COMPILE = [
|
||||||
|
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DCOMPILER_RT_DEFAULT_TARGET_ONLY=ON"
|
||||||
|
"-DCMAKE_C_COMPILER_TARGET=${stdenv.hostPlatform.config}"
|
||||||
|
"-DCMAKE_ASM_COMPILER_TARGET=${stdenv.hostPlatform.config}"
|
||||||
|
] ++ lib.optionals (useLLVM || bareMetal || isMusl) [
|
||||||
|
"-DCOMPILER_RT_BUILD_SANITIZERS=OFF"
|
||||||
|
"-DCOMPILER_RT_BUILD_XRAY=OFF"
|
||||||
|
"-DCOMPILER_RT_BUILD_LIBFUZZER=OFF"
|
||||||
|
"-DCOMPILER_RT_BUILD_PROFILE=OFF"
|
||||||
|
"-DCOMPILER_RT_BUILD_MEMPROF=OFF"
|
||||||
|
"-DCOMPILER_RT_BUILD_ORC=OFF" # may be possible to build with musl if necessary
|
||||||
|
] ++ lib.optionals ((useLLVM || bareMetal) && !haveLibc) [
|
||||||
|
"-DCMAKE_C_COMPILER_WORKS=ON"
|
||||||
|
"-DCMAKE_CXX_COMPILER_WORKS=ON"
|
||||||
|
"-DCOMPILER_RT_BAREMETAL_BUILD=ON"
|
||||||
|
"-DCMAKE_SIZEOF_VOID_P=${toString (stdenv.hostPlatform.parsed.cpu.bits / 8)}"
|
||||||
|
] ++ lib.optionals (useLLVM && !haveLibc) [
|
||||||
|
"-DCMAKE_C_FLAGS=-nodefaultlibs"
|
||||||
|
] ++ lib.optionals (useLLVM) [
|
||||||
|
"-DCOMPILER_RT_BUILD_BUILTINS=ON"
|
||||||
|
#https://stackoverflow.com/questions/53633705/cmake-the-c-compiler-is-not-able-to-compile-a-simple-test-program
|
||||||
|
"-DCMAKE_TRY_COMPILE_TARGET_TYPE=STATIC_LIBRARY"
|
||||||
|
] ++ lib.optionals (bareMetal) [
|
||||||
|
"-DCOMPILER_RT_OS_DIR=baremetal"
|
||||||
|
] ++ lib.optionals (stdenv.hostPlatform.isDarwin) [
|
||||||
|
"-DDARWIN_macosx_OVERRIDE_SDK_VERSION=ON"
|
||||||
|
"-DDARWIN_osx_ARCHS=${stdenv.hostPlatform.darwinArch}"
|
||||||
|
"-DDARWIN_osx_BUILTIN_ARCHS=${stdenv.hostPlatform.darwinArch}"
|
||||||
|
];
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./codesign.patch # Revert compiler-rt commit that makes codesign mandatory
|
||||||
|
./X86-support-extension.patch # Add support for i486 i586 i686 by reusing i386 config
|
||||||
|
./gnu-install-dirs.patch
|
||||||
|
# ld-wrapper dislikes `-rpath-link //nix/store`, so we normalize away the
|
||||||
|
# extra `/`.
|
||||||
|
./normalize-var.patch
|
||||||
|
] # Prevent a compilation error on darwin
|
||||||
|
++ lib.optional stdenv.hostPlatform.isDarwin ./darwin-targetconditionals.patch
|
||||||
|
++ lib.optional stdenv.hostPlatform.isAarch32 ./armv7l.patch;
|
||||||
|
|
||||||
|
# TSAN requires XPC on Darwin, which we have no public/free source files for. We can depend on the Apple frameworks
|
||||||
|
# to get it, but they're unfree. Since LLVM is rather central to the stdenv, we patch out TSAN support so that Hydra
|
||||||
|
# can build this. If we didn't do it, basically the entire nixpkgs on Darwin would have an unfree dependency and we'd
|
||||||
|
# get no binary cache for the entire platform. If you really find yourself wanting the TSAN, make this controllable by
|
||||||
|
# a flag and turn the flag off during the stdenv build.
|
||||||
|
postPatch = lib.optionalString (!stdenv.isDarwin) ''
|
||||||
|
substituteInPlace cmake/builtin-config-ix.cmake \
|
||||||
|
--replace 'set(X86 i386)' 'set(X86 i386 i486 i586 i686)'
|
||||||
|
'' + lib.optionalString stdenv.isDarwin ''
|
||||||
|
substituteInPlace cmake/builtin-config-ix.cmake \
|
||||||
|
--replace 'set(ARM64 arm64 arm64e)' 'set(ARM64)'
|
||||||
|
substituteInPlace cmake/config-ix.cmake \
|
||||||
|
--replace 'set(COMPILER_RT_HAS_TSAN TRUE)' 'set(COMPILER_RT_HAS_TSAN FALSE)'
|
||||||
|
'' + lib.optionalString (useLLVM) ''
|
||||||
|
substituteInPlace lib/builtins/int_util.c \
|
||||||
|
--replace "#include <stdlib.h>" ""
|
||||||
|
substituteInPlace lib/builtins/clear_cache.c \
|
||||||
|
--replace "#include <assert.h>" ""
|
||||||
|
substituteInPlace lib/builtins/cpu_model.c \
|
||||||
|
--replace "#include <assert.h>" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Hack around weird upsream RPATH bug
|
||||||
|
postInstall = lib.optionalString (stdenv.hostPlatform.isDarwin || stdenv.hostPlatform.isWasm) ''
|
||||||
|
ln -s "$out/lib"/*/* "$out/lib"
|
||||||
|
'' + lib.optionalString (useLLVM) ''
|
||||||
|
ln -s $out/lib/*/clang_rt.crtbegin-*.o $out/lib/crtbegin.o
|
||||||
|
ln -s $out/lib/*/clang_rt.crtend-*.o $out/lib/crtend.o
|
||||||
|
ln -s $out/lib/*/clang_rt.crtbegin_shared-*.o $out/lib/crtbeginS.o
|
||||||
|
ln -s $out/lib/*/clang_rt.crtend_shared-*.o $out/lib/crtendS.o
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = llvm_meta // {
|
||||||
|
homepage = "https://compiler-rt.llvm.org/";
|
||||||
|
description = "Compiler runtime libraries";
|
||||||
|
longDescription = ''
|
||||||
|
The compiler-rt project provides highly tuned implementations of the
|
||||||
|
low-level code generator support routines like "__fixunsdfdi" and other
|
||||||
|
calls generated when a target doesn't have a short sequence of native
|
||||||
|
instructions to implement a core IR operation. It also provides
|
||||||
|
implementations of run-time libraries for dynamic testing tools such as
|
||||||
|
AddressSanitizer, ThreadSanitizer, MemorySanitizer, and DataFlowSanitizer.
|
||||||
|
'';
|
||||||
|
# "All of the code in the compiler-rt project is dual licensed under the MIT
|
||||||
|
# license and the UIUC License (a BSD-like license)":
|
||||||
|
license = with lib.licenses; [ mit ncsa ];
|
||||||
|
};
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index 3a41aa43e406..f000cee6eae0 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -5,6 +5,8 @@
|
||||||
|
|
||||||
|
cmake_minimum_required(VERSION 3.13.4)
|
||||||
|
|
||||||
|
+include(GNUInstallDirs)
|
||||||
|
+
|
||||||
|
# Check if compiler-rt is built as a standalone project.
|
||||||
|
if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR OR COMPILER_RT_STANDALONE_BUILD)
|
||||||
|
project(CompilerRT C CXX ASM)
|
||||||
|
diff --git a/cmake/base-config-ix.cmake b/cmake/base-config-ix.cmake
|
||||||
|
index d7b0124f3546..3e111146df4d 100644
|
||||||
|
--- a/cmake/base-config-ix.cmake
|
||||||
|
+++ b/cmake/base-config-ix.cmake
|
||||||
|
@@ -67,7 +67,7 @@ if (LLVM_TREE_AVAILABLE)
|
||||||
|
else()
|
||||||
|
# Take output dir and install path from the user.
|
||||||
|
set(COMPILER_RT_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR} CACHE PATH
|
||||||
|
- "Path where built compiler-rt libraries should be stored.")
|
||||||
|
+ "Path where built compiler-rt build artifacts should be stored.")
|
||||||
|
set(COMPILER_RT_EXEC_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/bin CACHE PATH
|
||||||
|
"Path where built compiler-rt executables should be stored.")
|
||||||
|
set(COMPILER_RT_INSTALL_PATH "" CACHE PATH
|
||||||
|
@@ -99,13 +99,13 @@ endif()
|
||||||
|
if(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR AND NOT APPLE)
|
||||||
|
set(COMPILER_RT_OUTPUT_LIBRARY_DIR
|
||||||
|
${COMPILER_RT_OUTPUT_DIR}/lib)
|
||||||
|
- extend_path(default_install_path "${COMPILER_RT_INSTALL_PATH}" lib)
|
||||||
|
+ extend_path(default_install_path "${COMPILER_RT_INSTALL_PATH}" "${CMAKE_INSTALL_LIBDIR}")
|
||||||
|
set(COMPILER_RT_INSTALL_LIBRARY_DIR "${default_install_path}" CACHE PATH
|
||||||
|
"Path where built compiler-rt libraries should be installed.")
|
||||||
|
else(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR AND NOT APPLE)
|
||||||
|
set(COMPILER_RT_OUTPUT_LIBRARY_DIR
|
||||||
|
${COMPILER_RT_OUTPUT_DIR}/lib/${COMPILER_RT_OS_DIR})
|
||||||
|
- extend_path(default_install_path "${COMPILER_RT_INSTALL_PATH}" "lib/${COMPILER_RT_OS_DIR}")
|
||||||
|
+ extend_path(default_install_path "${COMPILER_RT_INSTALL_PATH}" "${CMAKE_INSTALL_LIBDIR}/${COMPILER_RT_OS_DIR}")
|
||||||
|
set(COMPILER_RT_INSTALL_LIBRARY_DIR "${default_install_path}" CACHE PATH
|
||||||
|
"Path where built compiler-rt libraries should be installed.")
|
||||||
|
endif()
|
@ -0,0 +1,16 @@
|
|||||||
|
diff --git a/compiler-rt/cmake/Modules/CompilerRTUtils.cmake b/compiler-rt/cmake/Modules/CompilerRTUtils.cmake
|
||||||
|
index f1f46fb9599c..6f19e69507ba 100644
|
||||||
|
--- a/cmake/Modules/CompilerRTUtils.cmake
|
||||||
|
+++ b/cmake/Modules/CompilerRTUtils.cmake
|
||||||
|
@@ -302,8 +302,9 @@ macro(load_llvm_config)
|
||||||
|
# Get some LLVM variables from LLVMConfig.
|
||||||
|
include("${LLVM_CMAKE_PATH}/LLVMConfig.cmake")
|
||||||
|
|
||||||
|
- set(LLVM_LIBRARY_OUTPUT_INTDIR
|
||||||
|
- ${LLVM_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib${LLVM_LIBDIR_SUFFIX})
|
||||||
|
+ get_filename_component(LLVM_LIBRARY_OUTPUT_INTDIR
|
||||||
|
+ ${LLVM_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib${LLVM_LIBDIR_SUFFIX}
|
||||||
|
+ REALPATH)
|
||||||
|
endif()
|
||||||
|
endmacro()
|
||||||
|
|
278
pkgs/development/compilers/llvm/14/default.nix
Normal file
278
pkgs/development/compilers/llvm/14/default.nix
Normal file
@ -0,0 +1,278 @@
|
|||||||
|
{ lowPrio, newScope, pkgs, lib, stdenv, cmake
|
||||||
|
, gccForLibs, preLibcCrossHeaders
|
||||||
|
, libxml2, python3, isl, fetchFromGitHub, overrideCC, wrapCCWith, wrapBintoolsWith
|
||||||
|
, buildLlvmTools # tools, but from the previous stage, for cross
|
||||||
|
, targetLlvmLibraries # libraries, but from the next stage, for cross
|
||||||
|
# This is the default binutils, but with *this* version of LLD rather
|
||||||
|
# than the default LLVM verion's, if LLD is the choice. We use these for
|
||||||
|
# the `useLLVM` bootstrapping below.
|
||||||
|
, bootBintoolsNoLibc ?
|
||||||
|
if stdenv.targetPlatform.linker == "lld"
|
||||||
|
then null
|
||||||
|
else pkgs.bintoolsNoLibc
|
||||||
|
, bootBintools ?
|
||||||
|
if stdenv.targetPlatform.linker == "lld"
|
||||||
|
then null
|
||||||
|
else pkgs.bintools
|
||||||
|
, darwin
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
release_version = "14.0.0";
|
||||||
|
candidate = "rc1"; # empty or "rcN"
|
||||||
|
dash-candidate = lib.optionalString (candidate != "") "-${candidate}";
|
||||||
|
rev = ""; # When using a Git commit
|
||||||
|
rev-version = ""; # When using a Git commit
|
||||||
|
version = if rev != "" then rev-version else "${release_version}${dash-candidate}";
|
||||||
|
targetConfig = stdenv.targetPlatform.config;
|
||||||
|
|
||||||
|
monorepoSrc = fetchFromGitHub {
|
||||||
|
owner = "llvm";
|
||||||
|
repo = "llvm-project";
|
||||||
|
rev = if rev != "" then rev else "llvmorg-${version}";
|
||||||
|
sha256 = "sha256-bO13J5bhE4YVGvoaTuzFgf62HYh+Shv6T0u07CFjI9E=";
|
||||||
|
};
|
||||||
|
|
||||||
|
llvm_meta = {
|
||||||
|
license = lib.licenses.ncsa;
|
||||||
|
maintainers = with lib.maintainers; [ lovek323 raskin dtzWill primeos ];
|
||||||
|
platforms = lib.platforms.all;
|
||||||
|
};
|
||||||
|
|
||||||
|
tools = lib.makeExtensible (tools: let
|
||||||
|
callPackage = newScope (tools // { inherit stdenv cmake libxml2 python3 isl release_version version monorepoSrc buildLlvmTools; });
|
||||||
|
mkExtraBuildCommands0 = cc: ''
|
||||||
|
rsrc="$out/resource-root"
|
||||||
|
mkdir "$rsrc"
|
||||||
|
ln -s "${cc.lib}/lib/clang/${release_version}/include" "$rsrc"
|
||||||
|
echo "-resource-dir=$rsrc" >> $out/nix-support/cc-cflags
|
||||||
|
'';
|
||||||
|
mkExtraBuildCommands = cc: mkExtraBuildCommands0 cc + ''
|
||||||
|
ln -s "${targetLlvmLibraries.compiler-rt.out}/lib" "$rsrc/lib"
|
||||||
|
ln -s "${targetLlvmLibraries.compiler-rt.out}/share" "$rsrc/share"
|
||||||
|
'';
|
||||||
|
|
||||||
|
bintoolsNoLibc' =
|
||||||
|
if bootBintoolsNoLibc == null
|
||||||
|
then tools.bintoolsNoLibc
|
||||||
|
else bootBintoolsNoLibc;
|
||||||
|
bintools' =
|
||||||
|
if bootBintools == null
|
||||||
|
then tools.bintools
|
||||||
|
else bootBintools;
|
||||||
|
|
||||||
|
in {
|
||||||
|
|
||||||
|
libllvm = callPackage ./llvm {
|
||||||
|
inherit llvm_meta;
|
||||||
|
};
|
||||||
|
|
||||||
|
# `llvm` historically had the binaries. When choosing an output explicitly,
|
||||||
|
# we need to reintroduce `outputSpecified` to get the expected behavior e.g. of lib.get*
|
||||||
|
llvm = tools.libllvm.out // { outputSpecified = false; };
|
||||||
|
|
||||||
|
libclang = callPackage ./clang {
|
||||||
|
inherit llvm_meta;
|
||||||
|
};
|
||||||
|
|
||||||
|
clang-unwrapped = tools.libclang.out // { outputSpecified = false; };
|
||||||
|
|
||||||
|
llvm-manpages = lowPrio (tools.libllvm.override {
|
||||||
|
enableManpages = true;
|
||||||
|
python3 = pkgs.python3; # don't use python-boot
|
||||||
|
});
|
||||||
|
|
||||||
|
clang-manpages = lowPrio (tools.libclang.override {
|
||||||
|
enableManpages = true;
|
||||||
|
python3 = pkgs.python3; # don't use python-boot
|
||||||
|
});
|
||||||
|
|
||||||
|
# TODO: lldb/docs/index.rst:155:toctree contains reference to nonexisting document 'design/structureddataplugins'
|
||||||
|
# lldb-manpages = lowPrio (tools.lldb.override {
|
||||||
|
# enableManpages = true;
|
||||||
|
# python3 = pkgs.python3; # don't use python-boot
|
||||||
|
# });
|
||||||
|
|
||||||
|
# pick clang appropriate for package set we are targeting
|
||||||
|
clang =
|
||||||
|
/**/ if stdenv.targetPlatform.useLLVM or false then tools.clangUseLLVM
|
||||||
|
else if (pkgs.targetPackages.stdenv or stdenv).cc.isGNU then tools.libstdcxxClang
|
||||||
|
else tools.libcxxClang;
|
||||||
|
|
||||||
|
libstdcxxClang = wrapCCWith rec {
|
||||||
|
cc = tools.clang-unwrapped;
|
||||||
|
# libstdcxx is taken from gcc in an ad-hoc way in cc-wrapper.
|
||||||
|
libcxx = null;
|
||||||
|
extraPackages = [
|
||||||
|
targetLlvmLibraries.compiler-rt
|
||||||
|
];
|
||||||
|
extraBuildCommands = mkExtraBuildCommands cc;
|
||||||
|
};
|
||||||
|
|
||||||
|
libcxxClang = wrapCCWith rec {
|
||||||
|
cc = tools.clang-unwrapped;
|
||||||
|
libcxx = targetLlvmLibraries.libcxx;
|
||||||
|
extraPackages = [
|
||||||
|
targetLlvmLibraries.libcxxabi
|
||||||
|
targetLlvmLibraries.compiler-rt
|
||||||
|
];
|
||||||
|
extraBuildCommands = mkExtraBuildCommands cc;
|
||||||
|
};
|
||||||
|
|
||||||
|
lld = callPackage ./lld {
|
||||||
|
inherit llvm_meta;
|
||||||
|
};
|
||||||
|
|
||||||
|
lldb = callPackage ./lldb {
|
||||||
|
inherit llvm_meta;
|
||||||
|
inherit (darwin) libobjc bootstrap_cmds;
|
||||||
|
inherit (darwin.apple_sdk.libs) xpc;
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Foundation Carbon Cocoa;
|
||||||
|
};
|
||||||
|
|
||||||
|
# Below, is the LLVM bootstrapping logic. It handles building a
|
||||||
|
# fully LLVM toolchain from scratch. No GCC toolchain should be
|
||||||
|
# pulled in. As a consequence, it is very quick to build different
|
||||||
|
# targets provided by LLVM and we can also build for what GCC
|
||||||
|
# doesn’t support like LLVM. Probably we should move to some other
|
||||||
|
# file.
|
||||||
|
|
||||||
|
bintools-unwrapped = callPackage ./bintools {};
|
||||||
|
|
||||||
|
bintoolsNoLibc = wrapBintoolsWith {
|
||||||
|
bintools = tools.bintools-unwrapped;
|
||||||
|
libc = preLibcCrossHeaders;
|
||||||
|
};
|
||||||
|
|
||||||
|
bintools = wrapBintoolsWith {
|
||||||
|
bintools = tools.bintools-unwrapped;
|
||||||
|
};
|
||||||
|
|
||||||
|
clangUseLLVM = wrapCCWith rec {
|
||||||
|
cc = tools.clang-unwrapped;
|
||||||
|
libcxx = targetLlvmLibraries.libcxx;
|
||||||
|
bintools = bintools';
|
||||||
|
extraPackages = [
|
||||||
|
targetLlvmLibraries.libcxxabi
|
||||||
|
targetLlvmLibraries.compiler-rt
|
||||||
|
] ++ lib.optionals (!stdenv.targetPlatform.isWasm) [
|
||||||
|
targetLlvmLibraries.libunwind
|
||||||
|
];
|
||||||
|
extraBuildCommands = ''
|
||||||
|
echo "-rtlib=compiler-rt -Wno-unused-command-line-argument" >> $out/nix-support/cc-cflags
|
||||||
|
echo "-B${targetLlvmLibraries.compiler-rt}/lib" >> $out/nix-support/cc-cflags
|
||||||
|
'' + lib.optionalString (!stdenv.targetPlatform.isWasm) ''
|
||||||
|
echo "--unwindlib=libunwind" >> $out/nix-support/cc-cflags
|
||||||
|
'' + lib.optionalString (!stdenv.targetPlatform.isWasm && stdenv.targetPlatform.useLLVM or false) ''
|
||||||
|
echo "-lunwind" >> $out/nix-support/cc-ldflags
|
||||||
|
'' + lib.optionalString stdenv.targetPlatform.isWasm ''
|
||||||
|
echo "-fno-exceptions" >> $out/nix-support/cc-cflags
|
||||||
|
'' + mkExtraBuildCommands cc;
|
||||||
|
};
|
||||||
|
|
||||||
|
clangNoLibcxx = wrapCCWith rec {
|
||||||
|
cc = tools.clang-unwrapped;
|
||||||
|
libcxx = null;
|
||||||
|
bintools = bintools';
|
||||||
|
extraPackages = [
|
||||||
|
targetLlvmLibraries.compiler-rt
|
||||||
|
];
|
||||||
|
extraBuildCommands = ''
|
||||||
|
echo "-rtlib=compiler-rt" >> $out/nix-support/cc-cflags
|
||||||
|
echo "-B${targetLlvmLibraries.compiler-rt}/lib" >> $out/nix-support/cc-cflags
|
||||||
|
echo "-nostdlib++" >> $out/nix-support/cc-cflags
|
||||||
|
'' + mkExtraBuildCommands cc;
|
||||||
|
};
|
||||||
|
|
||||||
|
clangNoLibc = wrapCCWith rec {
|
||||||
|
cc = tools.clang-unwrapped;
|
||||||
|
libcxx = null;
|
||||||
|
bintools = bintoolsNoLibc';
|
||||||
|
extraPackages = [
|
||||||
|
targetLlvmLibraries.compiler-rt
|
||||||
|
];
|
||||||
|
extraBuildCommands = ''
|
||||||
|
echo "-rtlib=compiler-rt" >> $out/nix-support/cc-cflags
|
||||||
|
echo "-B${targetLlvmLibraries.compiler-rt}/lib" >> $out/nix-support/cc-cflags
|
||||||
|
'' + mkExtraBuildCommands cc;
|
||||||
|
};
|
||||||
|
|
||||||
|
clangNoCompilerRt = wrapCCWith rec {
|
||||||
|
cc = tools.clang-unwrapped;
|
||||||
|
libcxx = null;
|
||||||
|
bintools = bintoolsNoLibc';
|
||||||
|
extraPackages = [ ];
|
||||||
|
extraBuildCommands = ''
|
||||||
|
echo "-nostartfiles" >> $out/nix-support/cc-cflags
|
||||||
|
'' + mkExtraBuildCommands0 cc;
|
||||||
|
};
|
||||||
|
|
||||||
|
clangNoCompilerRtWithLibc = wrapCCWith rec {
|
||||||
|
cc = tools.clang-unwrapped;
|
||||||
|
libcxx = null;
|
||||||
|
bintools = bintools';
|
||||||
|
extraPackages = [ ];
|
||||||
|
extraBuildCommands = mkExtraBuildCommands0 cc;
|
||||||
|
};
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
libraries = lib.makeExtensible (libraries: let
|
||||||
|
callPackage = newScope (libraries // buildLlvmTools // { inherit stdenv cmake libxml2 python3 isl release_version version monorepoSrc; });
|
||||||
|
in {
|
||||||
|
|
||||||
|
compiler-rt-libc = callPackage ./compiler-rt {
|
||||||
|
inherit llvm_meta;
|
||||||
|
stdenv = if stdenv.hostPlatform.useLLVM or false
|
||||||
|
then overrideCC stdenv buildLlvmTools.clangNoCompilerRtWithLibc
|
||||||
|
else stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
|
compiler-rt-no-libc = callPackage ./compiler-rt {
|
||||||
|
inherit llvm_meta;
|
||||||
|
stdenv = if stdenv.hostPlatform.useLLVM or false
|
||||||
|
then overrideCC stdenv buildLlvmTools.clangNoCompilerRt
|
||||||
|
else stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
|
# N.B. condition is safe because without useLLVM both are the same.
|
||||||
|
compiler-rt = if stdenv.hostPlatform.isAndroid
|
||||||
|
then libraries.compiler-rt-libc
|
||||||
|
else libraries.compiler-rt-no-libc;
|
||||||
|
|
||||||
|
stdenv = overrideCC stdenv buildLlvmTools.clang;
|
||||||
|
|
||||||
|
libcxxStdenv = overrideCC stdenv buildLlvmTools.libcxxClang;
|
||||||
|
|
||||||
|
libcxx = callPackage ./libcxx {
|
||||||
|
inherit llvm_meta;
|
||||||
|
stdenv = if stdenv.hostPlatform.useLLVM or false
|
||||||
|
then overrideCC stdenv buildLlvmTools.clangNoLibcxx
|
||||||
|
else stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
|
libcxxabi = let
|
||||||
|
stdenv_ = if stdenv.hostPlatform.useLLVM or false
|
||||||
|
then overrideCC stdenv buildLlvmTools.clangNoLibcxx
|
||||||
|
else stdenv;
|
||||||
|
cxx-headers = callPackage ./libcxx {
|
||||||
|
inherit llvm_meta;
|
||||||
|
stdenv = stdenv_;
|
||||||
|
headersOnly = true;
|
||||||
|
};
|
||||||
|
in callPackage ./libcxxabi {
|
||||||
|
stdenv = stdenv_;
|
||||||
|
inherit llvm_meta cxx-headers;
|
||||||
|
};
|
||||||
|
|
||||||
|
libunwind = callPackage ./libunwind {
|
||||||
|
inherit llvm_meta;
|
||||||
|
stdenv = overrideCC stdenv buildLlvmTools.clangNoLibcxx;
|
||||||
|
};
|
||||||
|
|
||||||
|
openmp = callPackage ./openmp {
|
||||||
|
inherit llvm_meta;
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
in { inherit tools libraries release_version; } // libraries // tools
|
89
pkgs/development/compilers/llvm/14/libcxx/default.nix
Normal file
89
pkgs/development/compilers/llvm/14/libcxx/default.nix
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
{ lib, stdenv, llvm_meta
|
||||||
|
, monorepoSrc, runCommand
|
||||||
|
, cmake, python3, fixDarwinDylibNames, version
|
||||||
|
, libcxxabi
|
||||||
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
||||||
|
|
||||||
|
# If headersOnly is true, the resulting package would only include the headers.
|
||||||
|
# Use this to break the circular dependency between libcxx and libcxxabi.
|
||||||
|
#
|
||||||
|
# Some context:
|
||||||
|
# https://reviews.llvm.org/rG1687f2bbe2e2aaa092f942d4a97d41fad43eedfb
|
||||||
|
, headersOnly ? false
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
basename = "libcxx";
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = basename + lib.optionalString headersOnly "-headers";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
src = runCommand "${pname}-src-${version}" {} ''
|
||||||
|
mkdir -p "$out"
|
||||||
|
cp -r ${monorepoSrc}/cmake "$out"
|
||||||
|
cp -r ${monorepoSrc}/${basename} "$out"
|
||||||
|
mkdir -p "$out/libcxxabi"
|
||||||
|
cp -r ${monorepoSrc}/libcxxabi/include "$out/libcxxabi"
|
||||||
|
mkdir -p "$out/llvm"
|
||||||
|
cp -r ${monorepoSrc}/llvm/cmake "$out/llvm"
|
||||||
|
cp -r ${monorepoSrc}/llvm/utils "$out/llvm"
|
||||||
|
'';
|
||||||
|
|
||||||
|
sourceRoot = "${src.name}/${basename}";
|
||||||
|
|
||||||
|
outputs = [ "out" ] ++ lib.optional (!headersOnly) "dev";
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./gnu-install-dirs.patch
|
||||||
|
] ++ lib.optionals stdenv.hostPlatform.isMusl [
|
||||||
|
../../libcxx-0001-musl-hacks.patch
|
||||||
|
];
|
||||||
|
|
||||||
|
preConfigure = lib.optionalString stdenv.hostPlatform.isMusl ''
|
||||||
|
patchShebangs utils/cat_files.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake python3 ]
|
||||||
|
++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
||||||
|
|
||||||
|
buildInputs = lib.optionals (!headersOnly) [ libcxxabi ];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DLIBCXX_CXX_ABI=libcxxabi" ]
|
||||||
|
++ lib.optional (stdenv.hostPlatform.isMusl || stdenv.hostPlatform.isWasi) "-DLIBCXX_HAS_MUSL_LIBC=1"
|
||||||
|
++ lib.optional (stdenv.hostPlatform.useLLVM or false) "-DLIBCXX_USE_COMPILER_RT=ON"
|
||||||
|
++ lib.optionals stdenv.hostPlatform.isWasm [
|
||||||
|
"-DLIBCXX_ENABLE_THREADS=OFF"
|
||||||
|
"-DLIBCXX_ENABLE_FILESYSTEM=OFF"
|
||||||
|
"-DLIBCXX_ENABLE_EXCEPTIONS=OFF"
|
||||||
|
] ++ lib.optional (!enableShared) "-DLIBCXX_ENABLE_SHARED=OFF";
|
||||||
|
|
||||||
|
buildFlags = lib.optional headersOnly "generate-cxx-headers";
|
||||||
|
installTargets = lib.optional headersOnly "install-cxx-headers";
|
||||||
|
|
||||||
|
# At this point, cxxabi headers would be installed in the dev output, which
|
||||||
|
# prevents moveToOutput from doing its job later in the build process.
|
||||||
|
postInstall = lib.optionalString (!headersOnly) ''
|
||||||
|
mv "$dev/include/c++/v1/"* "$out/include/c++/v1/"
|
||||||
|
pushd "$dev"
|
||||||
|
rmdir -p include/c++/v1
|
||||||
|
popd
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
isLLVM = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = llvm_meta // {
|
||||||
|
homepage = "https://libcxx.llvm.org/";
|
||||||
|
description = "C++ standard library";
|
||||||
|
longDescription = ''
|
||||||
|
libc++ is an implementation of the C++ standard library, targeting C++11,
|
||||||
|
C++14 and above.
|
||||||
|
'';
|
||||||
|
# "All of the code in libc++ is dual licensed under the MIT license and the
|
||||||
|
# UIUC License (a BSD-like license)":
|
||||||
|
license = with lib.licenses; [ mit ncsa ];
|
||||||
|
};
|
||||||
|
}
|
@ -0,0 +1,85 @@
|
|||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index b0569a4a54ca..7d665f5a3258 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -10,6 +10,8 @@ endif()
|
||||||
|
#===============================================================================
|
||||||
|
cmake_minimum_required(VERSION 3.13.4)
|
||||||
|
|
||||||
|
+include(GNUInstallDirs)
|
||||||
|
+
|
||||||
|
set(LLVM_COMMON_CMAKE_UTILS "${CMAKE_CURRENT_SOURCE_DIR}/../cmake")
|
||||||
|
|
||||||
|
# Add path for custom modules
|
||||||
|
@@ -415,13 +417,13 @@ if(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR AND NOT APPLE)
|
||||||
|
set(LIBCXX_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/${LLVM_DEFAULT_TARGET_TRIPLE})
|
||||||
|
set(LIBCXX_GENERATED_INCLUDE_DIR "${LLVM_BINARY_DIR}/include/c++/v1")
|
||||||
|
set(LIBCXX_GENERATED_INCLUDE_TARGET_DIR "${LLVM_BINARY_DIR}/include/${LLVM_DEFAULT_TARGET_TRIPLE}/c++/v1")
|
||||||
|
- set(LIBCXX_INSTALL_LIBRARY_DIR lib${LLVM_LIBDIR_SUFFIX}/${LLVM_DEFAULT_TARGET_TRIPLE} CACHE PATH
|
||||||
|
+ set(LIBCXX_INSTALL_LIBRARY_DIR "${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}/${LLVM_DEFAULT_TARGET_TRIPLE}" CACHE PATH
|
||||||
|
"Path where built libc++ libraries should be installed.")
|
||||||
|
- set(LIBCXX_INSTALL_RUNTIME_DIR bin CACHE PATH
|
||||||
|
+ set(LIBCXX_INSTALL_RUNTIME_DIR "${CMAKE_INSTALL_BINDIR}" CACHE PATH
|
||||||
|
"Path where built libc++ runtime libraries should be installed.")
|
||||||
|
- set(LIBCXX_INSTALL_INCLUDE_DIR "include/c++/v1" CACHE PATH
|
||||||
|
+ set(LIBCXX_INSTALL_INCLUDE_DIR "${CMAKE_INSTALL_INCLUDEDIR}/c++/v1" CACHE PATH
|
||||||
|
"Path where target-agnostic libc++ headers should be installed.")
|
||||||
|
- set(LIBCXX_INSTALL_INCLUDE_TARGET_DIR "include/${LLVM_DEFAULT_TARGET_TRIPLE}/c++/v1" CACHE PATH
|
||||||
|
+ set(LIBCXX_INSTALL_INCLUDE_TARGET_DIR "${CMAKE_INSTALL_INCLUDEDIR}/${LLVM_DEFAULT_TARGET_TRIPLE}/c++/v1" CACHE PATH
|
||||||
|
"Path where target-specific libc++ headers should be installed.")
|
||||||
|
if(LIBCXX_LIBDIR_SUBDIR)
|
||||||
|
string(APPEND LIBCXX_LIBRARY_DIR /${LIBCXX_LIBDIR_SUBDIR})
|
||||||
|
@@ -431,11 +433,11 @@ elseif(LLVM_LIBRARY_OUTPUT_INTDIR)
|
||||||
|
set(LIBCXX_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
|
||||||
|
set(LIBCXX_GENERATED_INCLUDE_DIR "${LLVM_BINARY_DIR}/include/c++/v1")
|
||||||
|
set(LIBCXX_GENERATED_INCLUDE_TARGET_DIR "${LIBCXX_GENERATED_INCLUDE_DIR}")
|
||||||
|
- set(LIBCXX_INSTALL_LIBRARY_DIR lib${LIBCXX_LIBDIR_SUFFIX} CACHE PATH
|
||||||
|
+ set(LIBCXX_INSTALL_LIBRARY_DIR ${CMAKE_INSTALL_LIBDIR}${LIBCXX_LIBDIR_SUFFIX} CACHE PATH
|
||||||
|
"Path where built libc++ libraries should be installed.")
|
||||||
|
- set(LIBCXX_INSTALL_RUNTIME_DIR bin CACHE PATH
|
||||||
|
+ set(LIBCXX_INSTALL_RUNTIME_DIR "${CMAKE_INSTALL_BINDIR}/c++/v1" CACHE PATH
|
||||||
|
"Path where built libc++ runtime libraries should be installed.")
|
||||||
|
- set(LIBCXX_INSTALL_INCLUDE_DIR "include/c++/v1" CACHE PATH
|
||||||
|
+ set(LIBCXX_INSTALL_INCLUDE_DIR "${CMAKE_INSTALL_INCLUDEDIR}/c++/v1" CACHE PATH
|
||||||
|
"Path where target-agnostic libc++ headers should be installed.")
|
||||||
|
set(LIBCXX_INSTALL_INCLUDE_TARGET_DIR "${LIBCXX_INSTALL_INCLUDE_DIR}" CACHE PATH
|
||||||
|
"Path where target-specific libc++ headers should be installed.")
|
||||||
|
@@ -443,11 +445,11 @@ else()
|
||||||
|
set(LIBCXX_LIBRARY_DIR ${CMAKE_BINARY_DIR}/lib${LIBCXX_LIBDIR_SUFFIX})
|
||||||
|
set(LIBCXX_GENERATED_INCLUDE_DIR "${CMAKE_BINARY_DIR}/include/c++/v1")
|
||||||
|
set(LIBCXX_GENERATED_INCLUDE_TARGET_DIR "${LIBCXX_GENERATED_INCLUDE_DIR}")
|
||||||
|
- set(LIBCXX_INSTALL_LIBRARY_DIR lib${LIBCXX_LIBDIR_SUFFIX} CACHE PATH
|
||||||
|
+ set(LIBCXX_INSTALL_LIBRARY_DIR ${CMAKE_INSTALL_LIBDIR}${LIBCXX_LIBDIR_SUFFIX} CACHE PATH
|
||||||
|
"Path where built libc++ libraries should be installed.")
|
||||||
|
- set(LIBCXX_INSTALL_RUNTIME_DIR bin CACHE PATH
|
||||||
|
+ set(LIBCXX_INSTALL_RUNTIME_DIR "${CMAKE_INSTALL_BINDIR}" CACHE PATH
|
||||||
|
"Path where built libc++ runtime libraries should be installed.")
|
||||||
|
- set(LIBCXX_INSTALL_INCLUDE_DIR "include/c++/v1" CACHE PATH
|
||||||
|
+ set(LIBCXX_INSTALL_INCLUDE_DIR "${CMAKE_INSTALL_INCLUDEDIR}/c++/v1" CACHE PATH
|
||||||
|
"Path where target-agnostic libc++ headers should be installed.")
|
||||||
|
set(LIBCXX_INSTALL_INCLUDE_TARGET_DIR "${LIBCXX_INSTALL_INCLUDE_DIR}" CACHE PATH
|
||||||
|
"Path where target-specific libc++ headers should be installed.")
|
||||||
|
diff --git a/cmake/Modules/HandleLibCXXABI.cmake b/cmake/Modules/HandleLibCXXABI.cmake
|
||||||
|
index 5a8a4a270a1a..d69405ddeeac 100644
|
||||||
|
--- a/cmake/Modules/HandleLibCXXABI.cmake
|
||||||
|
+++ b/cmake/Modules/HandleLibCXXABI.cmake
|
||||||
|
@@ -1,8 +1,9 @@
|
||||||
|
-
|
||||||
|
#===============================================================================
|
||||||
|
# Add an ABI library if appropriate
|
||||||
|
#===============================================================================
|
||||||
|
|
||||||
|
+include(GNUInstallDirs)
|
||||||
|
+
|
||||||
|
#
|
||||||
|
# _setup_abi: Set up the build to use an ABI library
|
||||||
|
#
|
||||||
|
@@ -63,7 +64,7 @@ macro(setup_abi_lib abidefines abishared abistatic abifiles abidirs)
|
||||||
|
|
||||||
|
if (LIBCXX_INSTALL_HEADERS)
|
||||||
|
install(FILES "${LIBCXX_BINARY_INCLUDE_DIR}/${fpath}"
|
||||||
|
- DESTINATION include/c++/v1/${dstdir}
|
||||||
|
+ DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/c++/v1/${dstdir}"
|
||||||
|
COMPONENT cxx-headers
|
||||||
|
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
|
||||||
|
)
|
86
pkgs/development/compilers/llvm/14/libcxxabi/default.nix
Normal file
86
pkgs/development/compilers/llvm/14/libcxxabi/default.nix
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
{ lib, stdenv, llvm_meta, cmake, python3
|
||||||
|
, monorepoSrc, runCommand
|
||||||
|
, cxx-headers, libunwind, version
|
||||||
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "libcxxabi";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
src = runCommand "${pname}-src-${version}" {} ''
|
||||||
|
mkdir -p "$out"
|
||||||
|
cp -r ${monorepoSrc}/cmake "$out"
|
||||||
|
cp -r ${monorepoSrc}/${pname} "$out"
|
||||||
|
mkdir -p "$out/libcxx/src"
|
||||||
|
cp -r ${monorepoSrc}/libcxx/cmake "$out/libcxx"
|
||||||
|
cp -r ${monorepoSrc}/libcxx/include "$out/libcxx"
|
||||||
|
cp -r ${monorepoSrc}/libcxx/src/include "$out/libcxx/src"
|
||||||
|
mkdir -p "$out/llvm"
|
||||||
|
cp -r ${monorepoSrc}/llvm/cmake "$out/llvm"
|
||||||
|
'';
|
||||||
|
|
||||||
|
sourceRoot = "${src.name}/${pname}";
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
postUnpack = lib.optionalString stdenv.isDarwin ''
|
||||||
|
export TRIPLE=x86_64-apple-darwin
|
||||||
|
'' + lib.optionalString stdenv.hostPlatform.isWasm ''
|
||||||
|
patch -p1 -d llvm -i ${./wasm.patch}
|
||||||
|
'';
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./gnu-install-dirs.patch
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake python3 ];
|
||||||
|
buildInputs = lib.optional (!stdenv.isDarwin && !stdenv.isFreeBSD && !stdenv.hostPlatform.isWasm) libunwind;
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DLIBCXXABI_LIBCXX_INCLUDES=${cxx-headers}/include/c++/v1"
|
||||||
|
] ++ lib.optionals (stdenv.hostPlatform.useLLVM or false) [
|
||||||
|
"-DLLVM_ENABLE_LIBCXX=ON"
|
||||||
|
"-DLIBCXXABI_USE_LLVM_UNWINDER=ON"
|
||||||
|
] ++ lib.optionals stdenv.hostPlatform.isWasm [
|
||||||
|
"-DLIBCXXABI_ENABLE_THREADS=OFF"
|
||||||
|
"-DLIBCXXABI_ENABLE_EXCEPTIONS=OFF"
|
||||||
|
] ++ lib.optionals (!enableShared) [
|
||||||
|
"-DLIBCXXABI_ENABLE_SHARED=OFF"
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = if stdenv.isDarwin
|
||||||
|
then ''
|
||||||
|
for file in lib/*.dylib; do
|
||||||
|
# this should be done in CMake, but having trouble figuring out
|
||||||
|
# the magic combination of necessary CMake variables
|
||||||
|
# if you fancy a try, take a look at
|
||||||
|
# https://gitlab.kitware.com/cmake/community/-/wikis/doc/cmake/RPATH-handling
|
||||||
|
install_name_tool -id $out/$file $file
|
||||||
|
done
|
||||||
|
make install
|
||||||
|
install -d 755 $out/include
|
||||||
|
install -m 644 ../include/*.h $out/include
|
||||||
|
''
|
||||||
|
else ''
|
||||||
|
install -d -m 755 $out/include $out/lib
|
||||||
|
install -m 644 lib/libc++abi.a $out/lib
|
||||||
|
install -m 644 ../include/cxxabi.h $out/include
|
||||||
|
'' + lib.optionalString enableShared ''
|
||||||
|
install -m 644 lib/libc++abi.so.1.0 $out/lib
|
||||||
|
ln -s libc++abi.so.1.0 $out/lib/libc++abi.so
|
||||||
|
ln -s libc++abi.so.1.0 $out/lib/libc++abi.so.1
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = llvm_meta // {
|
||||||
|
homepage = "https://libcxxabi.llvm.org/";
|
||||||
|
description = "Provides C++ standard library support";
|
||||||
|
longDescription = ''
|
||||||
|
libc++abi is a new implementation of low level support for a standard C++ library.
|
||||||
|
'';
|
||||||
|
# "All of the code in libc++abi is dual licensed under the MIT license and
|
||||||
|
# the UIUC License (a BSD-like license)":
|
||||||
|
license = with lib.licenses; [ mit ncsa ];
|
||||||
|
maintainers = llvm_meta.maintainers ++ [ lib.maintainers.vlstill ];
|
||||||
|
};
|
||||||
|
}
|
@ -0,0 +1,46 @@
|
|||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index 858f5d5cfd7f..16c67d7062be 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -10,6 +10,8 @@ endif()
|
||||||
|
|
||||||
|
cmake_minimum_required(VERSION 3.13.4)
|
||||||
|
|
||||||
|
+include(GNUInstallDirs)
|
||||||
|
+
|
||||||
|
set(LLVM_COMMON_CMAKE_UTILS "${CMAKE_CURRENT_SOURCE_DIR}/../cmake")
|
||||||
|
|
||||||
|
# Add path for custom modules
|
||||||
|
@@ -213,9 +215,9 @@ set(CMAKE_MODULE_PATH
|
||||||
|
if(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR AND NOT APPLE)
|
||||||
|
set(LIBCXXABI_HEADER_DIR ${LLVM_BINARY_DIR})
|
||||||
|
set(LIBCXXABI_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/${LLVM_DEFAULT_TARGET_TRIPLE})
|
||||||
|
- set(LIBCXXABI_INSTALL_LIBRARY_DIR lib${LLVM_LIBDIR_SUFFIX}/${LLVM_DEFAULT_TARGET_TRIPLE} CACHE PATH
|
||||||
|
+ set(LIBCXXABI_INSTALL_LIBRARY_DIR ${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}/${LLVM_DEFAULT_TARGET_TRIPLE} CACHE PATH
|
||||||
|
"Path where built libc++abi libraries should be installed.")
|
||||||
|
- set(LIBCXXABI_INSTALL_RUNTIME_DIR bin CACHE PATH
|
||||||
|
+ set(LIBCXXABI_INSTALL_RUNTIME_DIR "${CMAKE_INSTALL_BINDIR}" CACHE PATH
|
||||||
|
"Path where built libc++abi runtime libraries should be installed.")
|
||||||
|
if(LIBCXX_LIBDIR_SUBDIR)
|
||||||
|
string(APPEND LIBCXXABI_LIBRARY_DIR /${LIBCXXABI_LIBDIR_SUBDIR})
|
||||||
|
@@ -224,16 +226,16 @@ if(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR AND NOT APPLE)
|
||||||
|
elseif(LLVM_LIBRARY_OUTPUT_INTDIR)
|
||||||
|
set(LIBCXXABI_HEADER_DIR ${LLVM_BINARY_DIR})
|
||||||
|
set(LIBCXXABI_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
|
||||||
|
- set(LIBCXXABI_INSTALL_LIBRARY_DIR lib${LIBCXXABI_LIBDIR_SUFFIX} CACHE PATH
|
||||||
|
+ set(LIBCXXABI_INSTALL_LIBRARY_DIR ${CMAKE_INSTALL_LIBDIR}${LIBCXXABI_LIBDIR_SUFFIX} CACHE PATH
|
||||||
|
"Path where built libc++abi libraries should be installed.")
|
||||||
|
- set(LIBCXXABI_INSTALL_RUNTIME_DIR bin CACHE PATH
|
||||||
|
+ set(LIBCXXABI_INSTALL_RUNTIME_DIR "${CMAKE_INSTALL_BINDIR}" CACHE PATH
|
||||||
|
"Path where built libc++abi runtime libraries should be installed.")
|
||||||
|
else()
|
||||||
|
set(LIBCXXABI_HEADER_DIR ${CMAKE_BINARY_DIR})
|
||||||
|
set(LIBCXXABI_LIBRARY_DIR ${CMAKE_BINARY_DIR}/lib${LIBCXXABI_LIBDIR_SUFFIX})
|
||||||
|
- set(LIBCXXABI_INSTALL_LIBRARY_DIR lib${LIBCXXABI_LIBDIR_SUFFIX} CACHE PATH
|
||||||
|
+ set(LIBCXXABI_INSTALL_LIBRARY_DIR ${CMAKE_INSTALL_LIBDIR}${LIBCXXABI_LIBDIR_SUFFIX} CACHE PATH
|
||||||
|
"Path where built libc++abi libraries should be installed.")
|
||||||
|
- set(LIBCXXABI_INSTALL_RUNTIME_DIR bin CACHE PATH
|
||||||
|
+ set(LIBCXXABI_INSTALL_RUNTIME_DIR "${CMAKE_INSTALL_BINDIR}" CACHE PATH
|
||||||
|
"Path where built libc++abi runtime libraries should be installed.")
|
||||||
|
endif()
|
||||||
|
|
16
pkgs/development/compilers/llvm/14/libcxxabi/wasm.patch
Normal file
16
pkgs/development/compilers/llvm/14/libcxxabi/wasm.patch
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
diff --git a/cmake/modules/HandleLLVMOptions.cmake b/cmake/modules/HandleLLVMOptions.cmake
|
||||||
|
index 15497d405e0..33f7f18193a 100644
|
||||||
|
--- a/cmake/modules/HandleLLVMOptions.cmake
|
||||||
|
+++ b/cmake/modules/HandleLLVMOptions.cmake
|
||||||
|
@@ -127,7 +127,10 @@ else(WIN32)
|
||||||
|
set(LLVM_HAVE_LINK_VERSION_SCRIPT 1)
|
||||||
|
endif()
|
||||||
|
else(FUCHSIA OR UNIX)
|
||||||
|
- MESSAGE(SEND_ERROR "Unable to determine platform")
|
||||||
|
+ if(${CMAKE_SYSTEM_NAME} MATCHES "Wasi")
|
||||||
|
+ else()
|
||||||
|
+ MESSAGE(SEND_ERROR "Unable to determine platform")
|
||||||
|
+ endif()
|
||||||
|
endif(FUCHSIA OR UNIX)
|
||||||
|
endif(WIN32)
|
||||||
|
|
47
pkgs/development/compilers/llvm/14/libunwind/default.nix
Normal file
47
pkgs/development/compilers/llvm/14/libunwind/default.nix
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
{ lib, stdenv, llvm_meta, version
|
||||||
|
, monorepoSrc, runCommand
|
||||||
|
, cmake
|
||||||
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "libunwind";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
# I am not so comfortable giving libc++ and friends the whole monorepo as
|
||||||
|
# requested, so I filter it to what is needed.
|
||||||
|
src = runCommand "${pname}-src-${version}" {} ''
|
||||||
|
mkdir -p "$out"
|
||||||
|
cp -r ${monorepoSrc}/cmake "$out"
|
||||||
|
cp -r ${monorepoSrc}/${pname} "$out"
|
||||||
|
mkdir -p "$out/libcxx"
|
||||||
|
cp -r ${monorepoSrc}/libcxx/cmake "$out/libcxx"
|
||||||
|
cp -r ${monorepoSrc}/libcxx/utils "$out/libcxx"
|
||||||
|
mkdir -p "$out/llvm"
|
||||||
|
cp -r ${monorepoSrc}/llvm/cmake "$out/llvm"
|
||||||
|
'';
|
||||||
|
|
||||||
|
sourceRoot = "${src.name}/${pname}";
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./gnu-install-dirs.patch
|
||||||
|
];
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
cmakeFlags = lib.optional (!enableShared) "-DLIBUNWIND_ENABLE_SHARED=OFF";
|
||||||
|
|
||||||
|
meta = llvm_meta // {
|
||||||
|
# Details: https://github.com/llvm/llvm-project/blob/main/libunwind/docs/index.rst
|
||||||
|
homepage = "https://clang.llvm.org/docs/Toolchain.html#unwind-library";
|
||||||
|
description = "LLVM's unwinder library";
|
||||||
|
longDescription = ''
|
||||||
|
The unwind library provides a family of _Unwind_* functions implementing
|
||||||
|
the language-neutral stack unwinding portion of the Itanium C++ ABI (Level
|
||||||
|
I). It is a dependency of the C++ ABI library, and sometimes is a
|
||||||
|
dependency of other runtimes.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
@ -0,0 +1,65 @@
|
|||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index e3cc66dd2226..1299b596ce0d 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -8,6 +8,8 @@ endif()
|
||||||
|
|
||||||
|
cmake_minimum_required(VERSION 3.13.4)
|
||||||
|
|
||||||
|
+include(GNUInstallDirs)
|
||||||
|
+
|
||||||
|
set(LLVM_COMMON_CMAKE_UTILS "${CMAKE_CURRENT_SOURCE_DIR}/../cmake")
|
||||||
|
|
||||||
|
# Add path for custom modules
|
||||||
|
@@ -139,25 +141,27 @@ set(CMAKE_MODULE_PATH
|
||||||
|
|
||||||
|
if(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR AND NOT APPLE)
|
||||||
|
set(LIBUNWIND_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/${LLVM_DEFAULT_TARGET_TRIPLE})
|
||||||
|
- set(LIBUNWIND_INSTALL_LIBRARY_DIR lib${LLVM_LIBDIR_SUFFIX}/${LLVM_DEFAULT_TARGET_TRIPLE} CACHE PATH
|
||||||
|
+ set(LIBUNWIND_INSTALL_INCLUDE_DIR "${CMAKE_INSTALL_INCLUDEDIR}/${LLVM_DEFAULT_TARGET_TRIPLE}" CACHE PATH
|
||||||
|
+ "Path where built libunwind headers should be installed.")
|
||||||
|
+ set(LIBUNWIND_INSTALL_LIBRARY_DIR ${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}/${LLVM_DEFAULT_TARGET_TRIPLE} CACHE PATH
|
||||||
|
"Path where built libunwind libraries should be installed.")
|
||||||
|
- set(LIBUNWIND_INSTALL_RUNTIME_DIR bin CACHE PATH
|
||||||
|
+ set(LIBUNWIND_INSTALL_RUNTIME_DIR "${CMAKE_INSTALL_BINDIR}" CACHE PATH
|
||||||
|
"Path where built libunwind runtime libraries should be installed.")
|
||||||
|
if(LIBCXX_LIBDIR_SUBDIR)
|
||||||
|
string(APPEND LIBUNWIND_LIBRARY_DIR /${LIBUNWIND_LIBDIR_SUBDIR})
|
||||||
|
string(APPEND LIBUNWIND_INSTALL_LIBRARY_DIR /${LIBUNWIND_LIBDIR_SUBDIR})
|
||||||
|
endif()
|
||||||
|
-elseif(LLVM_LIBRARY_OUTPUT_INTDIR)
|
||||||
|
- set(LIBUNWIND_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
|
||||||
|
- set(LIBUNWIND_INSTALL_LIBRARY_DIR lib${LIBUNWIND_LIBDIR_SUFFIX} CACHE PATH
|
||||||
|
- "Path where built libunwind libraries should be installed.")
|
||||||
|
- set(LIBUNWIND_INSTALL_RUNTIME_DIR bin CACHE PATH
|
||||||
|
- "Path where built libunwind runtime libraries should be installed.")
|
||||||
|
else()
|
||||||
|
- set(LIBUNWIND_LIBRARY_DIR ${CMAKE_BINARY_DIR}/lib${LIBUNWIND_LIBDIR_SUFFIX})
|
||||||
|
- set(LIBUNWIND_INSTALL_LIBRARY_DIR lib${LIBUNWIND_LIBDIR_SUFFIX} CACHE PATH
|
||||||
|
+ if(LLVM_LIBRARY_OUTPUT_INTDIR)
|
||||||
|
+ set(LIBUNWIND_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
|
||||||
|
+ else()
|
||||||
|
+ set(LIBUNWIND_LIBRARY_DIR ${CMAKE_BINARY_DIR}/lib${LIBUNWIND_LIBDIR_SUFFIX})
|
||||||
|
+ endif()
|
||||||
|
+ set(LIBUNWIND_INSTALL_INCLUDE_DIR "${CMAKE_INSTALL_INCLUDEDIR}" CACHE PATH
|
||||||
|
+ "Path where built libunwind headers should be installed.")
|
||||||
|
+ set(LIBUNWIND_INSTALL_LIBRARY_DIR ${CMAKE_INSTALL_LIBDIR}${LIBUNWIND_LIBDIR_SUFFIX} CACHE PATH
|
||||||
|
"Path where built libunwind libraries should be installed.")
|
||||||
|
- set(LIBUNWIND_INSTALL_RUNTIME_DIR bin CACHE PATH
|
||||||
|
+ set(LIBUNWIND_INSTALL_RUNTIME_DIR "${CMAKE_INSTALL_BINDIR}" CACHE PATH
|
||||||
|
"Path where built libunwind runtime libraries should be installed.")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt
|
||||||
|
index c3bb1dd0f69f..adf1766c44cb 100644
|
||||||
|
--- a/include/CMakeLists.txt
|
||||||
|
+++ b/include/CMakeLists.txt
|
||||||
|
@@ -14,7 +14,7 @@ if(LIBUNWIND_INSTALL_HEADERS)
|
||||||
|
foreach(file ${files})
|
||||||
|
get_filename_component(dir ${file} DIRECTORY)
|
||||||
|
install(FILES ${file}
|
||||||
|
- DESTINATION "include/${dir}"
|
||||||
|
+ DESTINATION "${LIBUNWIND_INSTALL_INCLUDE_DIR}/${dir}"
|
||||||
|
COMPONENT unwind-headers
|
||||||
|
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
|
||||||
|
)
|
55
pkgs/development/compilers/llvm/14/lld/default.nix
Normal file
55
pkgs/development/compilers/llvm/14/lld/default.nix
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
{ lib, stdenv, llvm_meta
|
||||||
|
, buildLlvmTools
|
||||||
|
, monorepoSrc, runCommand
|
||||||
|
, cmake
|
||||||
|
, libxml2
|
||||||
|
, libllvm
|
||||||
|
, version
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "lld";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
# Blank llvm dir just so relative path works
|
||||||
|
src = runCommand "${pname}-src-${version}" {} ''
|
||||||
|
mkdir -p "$out"
|
||||||
|
cp -r ${monorepoSrc}/cmake "$out"
|
||||||
|
cp -r ${monorepoSrc}/${pname} "$out"
|
||||||
|
mkdir -p "$out/libunwind"
|
||||||
|
cp -r ${monorepoSrc}/libunwind/include "$out/libunwind"
|
||||||
|
mkdir -p "$out/llvm"
|
||||||
|
'';
|
||||||
|
|
||||||
|
sourceRoot = "${src.name}/${pname}";
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./gnu-install-dirs.patch
|
||||||
|
# On Darwin the llvm-config is perhaps not working fine as the
|
||||||
|
# LLVM_MAIN_SRC_DIR is not getting set correctly, and the build fails as
|
||||||
|
# the include path is not correct.
|
||||||
|
./fix-root-src-dir.patch
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
buildInputs = [ libllvm libxml2 ];
|
||||||
|
|
||||||
|
cmakeFlags = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
||||||
|
"-DLLVM_TABLEGEN_EXE=${buildLlvmTools.llvm}/bin/llvm-tblgen"
|
||||||
|
];
|
||||||
|
|
||||||
|
outputs = [ "out" "lib" "dev" ];
|
||||||
|
|
||||||
|
meta = llvm_meta // {
|
||||||
|
homepage = "https://lld.llvm.org/";
|
||||||
|
description = "The LLVM linker";
|
||||||
|
longDescription = ''
|
||||||
|
LLD is a linker from the LLVM project that is a drop-in replacement for
|
||||||
|
system linkers and runs much faster than them. It also provides features
|
||||||
|
that are useful for toolchain developers.
|
||||||
|
The linker supports ELF (Unix), PE/COFF (Windows), Mach-O (macOS), and
|
||||||
|
WebAssembly in descending order of completeness. Internally, LLD consists
|
||||||
|
of several different linkers.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
diff --git a/lld/CMakeLists.txt b/lld/CMakeLists.txt
|
||||||
|
index e1a29b884d17..9d542f8fbfc1 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -64,7 +64,7 @@ if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
||||||
|
|
||||||
|
set(LLVM_MAIN_INCLUDE_DIR ${MAIN_INCLUDE_DIR} CACHE PATH "Path to llvm/include")
|
||||||
|
set(LLVM_BINARY_DIR ${LLVM_OBJ_ROOT} CACHE PATH "Path to LLVM build tree")
|
||||||
|
- set(LLVM_MAIN_SRC_DIR ${MAIN_SRC_DIR} CACHE PATH "Path to LLVM source tree")
|
||||||
|
+ set(LLVM_MAIN_SRC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../llvm" CACHE PATH "Path to LLVM source tree")
|
||||||
|
|
||||||
|
find_program(LLVM_TABLEGEN_EXE "llvm-tblgen" ${LLVM_TOOLS_BINARY_DIR}
|
||||||
|
NO_DEFAULT_PATH)
|
@ -0,0 +1,22 @@
|
|||||||
|
diff --git a/cmake/modules/AddLLD.cmake b/cmake/modules/AddLLD.cmake
|
||||||
|
index dd2898ce6236..ebbea040ff54 100644
|
||||||
|
--- a/cmake/modules/AddLLD.cmake
|
||||||
|
+++ b/cmake/modules/AddLLD.cmake
|
||||||
|
@@ -18,8 +18,8 @@ macro(add_lld_library name)
|
||||||
|
install(TARGETS ${name}
|
||||||
|
COMPONENT ${name}
|
||||||
|
${export_to_lldtargets}
|
||||||
|
- LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
|
||||||
|
- ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX}
|
||||||
|
+ LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}"
|
||||||
|
+ ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}"
|
||||||
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}")
|
||||||
|
|
||||||
|
if (${ARG_SHARED} AND NOT CMAKE_CONFIGURATION_TYPES)
|
||||||
|
@@ -62,5 +62,5 @@ endmacro()
|
||||||
|
macro(add_lld_symlink name dest)
|
||||||
|
add_llvm_tool_symlink(${name} ${dest} ALWAYS_GENERATE)
|
||||||
|
# Always generate install targets
|
||||||
|
- llvm_install_symlink(${name} ${dest} ALWAYS_GENERATE)
|
||||||
|
+ llvm_install_symlink(${name} ${dest} ${CMAKE_INSTALL_FULL_BINDIR} ALWAYS_GENERATE)
|
||||||
|
endmacro()
|
144
pkgs/development/compilers/llvm/14/lldb/default.nix
Normal file
144
pkgs/development/compilers/llvm/14/lldb/default.nix
Normal file
@ -0,0 +1,144 @@
|
|||||||
|
{ lib, stdenv, llvm_meta
|
||||||
|
, runCommand
|
||||||
|
, monorepoSrc
|
||||||
|
, cmake
|
||||||
|
, zlib
|
||||||
|
, ncurses
|
||||||
|
, swig
|
||||||
|
, which
|
||||||
|
, libedit
|
||||||
|
, libxml2
|
||||||
|
, libllvm
|
||||||
|
, libclang
|
||||||
|
, python3
|
||||||
|
, version
|
||||||
|
, libobjc
|
||||||
|
, xpc
|
||||||
|
, Foundation
|
||||||
|
, bootstrap_cmds
|
||||||
|
, Carbon
|
||||||
|
, Cocoa
|
||||||
|
, lit
|
||||||
|
, makeWrapper
|
||||||
|
, enableManpages ? false
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation (rec {
|
||||||
|
pname = "lldb";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
src = runCommand "${pname}-src-${version}" {} ''
|
||||||
|
mkdir -p "$out"
|
||||||
|
cp -r ${monorepoSrc}/cmake "$out"
|
||||||
|
cp -r ${monorepoSrc}/${pname} "$out"
|
||||||
|
'';
|
||||||
|
|
||||||
|
sourceRoot = "${src.name}/${pname}";
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./procfs.patch
|
||||||
|
(runCommand "resource-dir.patch" {
|
||||||
|
clangLibDir = "${libclang.lib}/lib";
|
||||||
|
} ''
|
||||||
|
substitute '${./resource-dir.patch}' "$out" --subst-var clangLibDir
|
||||||
|
'')
|
||||||
|
./gnu-install-dirs.patch
|
||||||
|
];
|
||||||
|
|
||||||
|
outputs = [ "out" "lib" "dev" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake python3 which swig lit makeWrapper
|
||||||
|
] ++ lib.optionals enableManpages [
|
||||||
|
python3.pkgs.sphinx python3.pkgs.recommonmark
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
ncurses
|
||||||
|
zlib
|
||||||
|
libedit
|
||||||
|
libxml2
|
||||||
|
libllvm
|
||||||
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
libobjc
|
||||||
|
xpc
|
||||||
|
Foundation
|
||||||
|
bootstrap_cmds
|
||||||
|
Carbon
|
||||||
|
Cocoa
|
||||||
|
];
|
||||||
|
|
||||||
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DLLDB_INCLUDE_TESTS=${if doCheck then "YES" else "NO"}"
|
||||||
|
"-DLLVM_ENABLE_RTTI=OFF"
|
||||||
|
"-DClang_DIR=${libclang.dev}/lib/cmake"
|
||||||
|
"-DLLVM_EXTERNAL_LIT=${lit}/bin/lit"
|
||||||
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
"-DLLDB_USE_SYSTEM_DEBUGSERVER=ON"
|
||||||
|
] ++ lib.optionals (!stdenv.isDarwin) [
|
||||||
|
"-DLLDB_CODESIGN_IDENTITY=" # codesigning makes nondeterministic
|
||||||
|
] ++ lib.optionals enableManpages [
|
||||||
|
"-DLLVM_ENABLE_SPHINX=ON"
|
||||||
|
"-DSPHINX_OUTPUT_MAN=ON"
|
||||||
|
"-DSPHINX_OUTPUT_HTML=OFF"
|
||||||
|
] ++ lib.optionals doCheck [
|
||||||
|
"-DLLDB_TEST_C_COMPILER=${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc"
|
||||||
|
"-DLLDB_TEST_CXX_COMPILER=${stdenv.cc}/bin/${stdenv.cc.targetPrefix}c++"
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
installCheckPhase = ''
|
||||||
|
if [ ! -e "$lib/${python3.sitePackages}/lldb/_lldb.so" ] ; then
|
||||||
|
return 1;
|
||||||
|
fi
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram $out/bin/lldb --prefix PYTHONPATH : $lib/${python3.sitePackages}/
|
||||||
|
|
||||||
|
# Editor support
|
||||||
|
# vscode:
|
||||||
|
install -D ../tools/lldb-vscode/package.json $out/share/vscode/extensions/llvm-org.lldb-vscode-0.1.0/package.json
|
||||||
|
mkdir -p $out/share/vscode/extensions/llvm-org.lldb-vscode-0.1.0/bin
|
||||||
|
ln -s $out/bin/lldb-vscode $out/share/vscode/extensions/llvm-org.lldb-vscode-0.1.0/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = llvm_meta // {
|
||||||
|
homepage = "https://lldb.llvm.org/";
|
||||||
|
description = "A next-generation high-performance debugger";
|
||||||
|
longDescription = ''
|
||||||
|
LLDB is a next generation, high-performance debugger. It is built as a set
|
||||||
|
of reusable components which highly leverage existing libraries in the
|
||||||
|
larger LLVM Project, such as the Clang expression parser and LLVM
|
||||||
|
disassembler.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
} // lib.optionalAttrs enableManpages {
|
||||||
|
pname = "lldb-manpages";
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
make docs-lldb-man
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = [];
|
||||||
|
|
||||||
|
# manually install lldb man page
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share/man/man1
|
||||||
|
install docs/man/lldb.1 -t $out/share/man/man1/
|
||||||
|
'';
|
||||||
|
|
||||||
|
postPatch = null;
|
||||||
|
postInstall = null;
|
||||||
|
|
||||||
|
outputs = [ "out" ];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = llvm_meta // {
|
||||||
|
description = "man pages for LLDB ${version}";
|
||||||
|
};
|
||||||
|
})
|
@ -0,0 +1,36 @@
|
|||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index 79d451965ed4..78188978d6de 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -12,6 +12,8 @@ set(CMAKE_MODULE_PATH
|
||||||
|
# If we are not building as part of LLVM, build LLDB as a standalone project,
|
||||||
|
# using LLVM as an external library.
|
||||||
|
if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
||||||
|
+ include(GNUInstallDirs)
|
||||||
|
+
|
||||||
|
project(lldb)
|
||||||
|
include(LLDBStandalone)
|
||||||
|
|
||||||
|
diff --git a/cmake/modules/AddLLDB.cmake b/cmake/modules/AddLLDB.cmake
|
||||||
|
index 3291a7c808e1..b27d27ce6a87 100644
|
||||||
|
--- a/cmake/modules/AddLLDB.cmake
|
||||||
|
+++ b/cmake/modules/AddLLDB.cmake
|
||||||
|
@@ -109,7 +109,7 @@ function(add_lldb_library name)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(PARAM_SHARED)
|
||||||
|
- set(install_dest lib${LLVM_LIBDIR_SUFFIX})
|
||||||
|
+ set(install_dest ${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX})
|
||||||
|
if(PARAM_INSTALL_PREFIX)
|
||||||
|
set(install_dest ${PARAM_INSTALL_PREFIX})
|
||||||
|
endif()
|
||||||
|
diff --git a/tools/intel-features/CMakeLists.txt b/tools/intel-features/CMakeLists.txt
|
||||||
|
index 7d48491ec89a..c04543585588 100644
|
||||||
|
--- a/tools/intel-features/CMakeLists.txt
|
||||||
|
+++ b/tools/intel-features/CMakeLists.txt
|
||||||
|
@@ -30,4 +30,4 @@ add_lldb_library(lldbIntelFeatures SHARED
|
||||||
|
)
|
||||||
|
|
||||||
|
install(TARGETS lldbIntelFeatures
|
||||||
|
- LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX})
|
||||||
|
+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX})
|
31
pkgs/development/compilers/llvm/14/lldb/procfs.patch
Normal file
31
pkgs/development/compilers/llvm/14/lldb/procfs.patch
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
--- a/source/Plugins/Process/Linux/Procfs.h
|
||||||
|
+++ b/source/Plugins/Process/Linux/Procfs.h
|
||||||
|
@@ -11,21 +11,12 @@
|
||||||
|
// sys/procfs.h on Android/Linux for all supported architectures.
|
||||||
|
|
||||||
|
#include <sys/ptrace.h>
|
||||||
|
+#include <asm/ptrace.h>
|
||||||
|
|
||||||
|
-#ifdef __ANDROID__
|
||||||
|
-#if defined(__arm64__) || defined(__aarch64__)
|
||||||
|
-typedef unsigned long elf_greg_t;
|
||||||
|
-typedef elf_greg_t
|
||||||
|
- elf_gregset_t[(sizeof(struct user_pt_regs) / sizeof(elf_greg_t))];
|
||||||
|
-typedef struct user_fpsimd_state elf_fpregset_t;
|
||||||
|
-#ifndef NT_FPREGSET
|
||||||
|
-#define NT_FPREGSET NT_PRFPREG
|
||||||
|
-#endif // NT_FPREGSET
|
||||||
|
-#elif defined(__mips__)
|
||||||
|
-#ifndef NT_FPREGSET
|
||||||
|
-#define NT_FPREGSET NT_PRFPREG
|
||||||
|
-#endif // NT_FPREGSET
|
||||||
|
-#endif
|
||||||
|
-#else // __ANDROID__
|
||||||
|
+#if !defined(__GLIBC__) && defined(__powerpc__)
|
||||||
|
+#define pt_regs musl_pt_regs
|
||||||
|
+#include <sys/procfs.h>
|
||||||
|
+#undef pt_regs
|
||||||
|
+#else
|
||||||
|
#include <sys/procfs.h>
|
||||||
|
-#endif // __ANDROID__
|
||||||
|
+#endif
|
13
pkgs/development/compilers/llvm/14/lldb/resource-dir.patch
Normal file
13
pkgs/development/compilers/llvm/14/lldb/resource-dir.patch
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
diff --git a/lldb/cmake/modules/LLDBConfig.cmake b/lldb/cmake/modules/LLDBConfig.cmake
|
||||||
|
index 37364341ff8b..7f74c1a3e257 100644
|
||||||
|
--- a/cmake/modules/LLDBConfig.cmake
|
||||||
|
+++ b/cmake/modules/LLDBConfig.cmake
|
||||||
|
@@ -257,7 +257,7 @@ if (NOT TARGET clang-resource-headers)
|
||||||
|
# Iterate over the possible places where the external resource directory
|
||||||
|
# could be and pick the first that exists.
|
||||||
|
foreach(CANDIDATE "${Clang_DIR}/../.." "${LLVM_DIR}" "${LLVM_LIBRARY_DIRS}"
|
||||||
|
- "${LLVM_BUILD_LIBRARY_DIR}"
|
||||||
|
+ "${LLVM_BUILD_LIBRARY_DIR}" "@clangLibDir@"
|
||||||
|
"${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX}")
|
||||||
|
# Build the resource directory path by appending 'clang/<version number>'.
|
||||||
|
set(CANDIDATE_RESOURCE_DIR "${CANDIDATE}/clang/${LLDB_CLANG_RESOURCE_DIR_NAME}")
|
254
pkgs/development/compilers/llvm/14/llvm/default.nix
Normal file
254
pkgs/development/compilers/llvm/14/llvm/default.nix
Normal file
@ -0,0 +1,254 @@
|
|||||||
|
{ lib, stdenv, llvm_meta
|
||||||
|
, pkgsBuildBuild
|
||||||
|
, monorepoSrc
|
||||||
|
, runCommand
|
||||||
|
, fetchpatch
|
||||||
|
, cmake
|
||||||
|
, python3
|
||||||
|
, libffi
|
||||||
|
, libbfd
|
||||||
|
, libpfm
|
||||||
|
, libxml2
|
||||||
|
, ncurses
|
||||||
|
, version
|
||||||
|
, release_version
|
||||||
|
, zlib
|
||||||
|
, which
|
||||||
|
, buildLlvmTools
|
||||||
|
, debugVersion ? false
|
||||||
|
, enableManpages ? false
|
||||||
|
, enableSharedLibraries ? !stdenv.hostPlatform.isStatic
|
||||||
|
, enablePFM ? !(stdenv.isDarwin
|
||||||
|
|| stdenv.isAarch64 # broken for Ampere eMAG 8180 (c2.large.arm on Packet) #56245
|
||||||
|
|| stdenv.isAarch32 # broken for the armv7l builder
|
||||||
|
)
|
||||||
|
, enablePolly ? false
|
||||||
|
} @args:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (lib) optional optionals optionalString;
|
||||||
|
|
||||||
|
# Used when creating a version-suffixed symlink of libLLVM.dylib
|
||||||
|
shortVersion = with lib;
|
||||||
|
concatStringsSep "." (take 1 (splitString "." release_version));
|
||||||
|
|
||||||
|
in stdenv.mkDerivation (rec {
|
||||||
|
pname = "llvm";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
src = runCommand "${pname}-src-${version}" {} (''
|
||||||
|
mkdir -p "$out"
|
||||||
|
cp -r ${monorepoSrc}/cmake "$out"
|
||||||
|
cp -r ${monorepoSrc}/${pname} "$out"
|
||||||
|
cp -r ${monorepoSrc}/third-party "$out"
|
||||||
|
'' + lib.optionalString enablePolly ''
|
||||||
|
cp -r ${monorepoSrc}/polly "$out/llvm/tools"
|
||||||
|
'');
|
||||||
|
|
||||||
|
sourceRoot = "${src.name}/${pname}";
|
||||||
|
|
||||||
|
outputs = [ "out" "lib" "dev" "python" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake python3 ]
|
||||||
|
++ optionals enableManpages [ python3.pkgs.sphinx python3.pkgs.recommonmark ];
|
||||||
|
|
||||||
|
buildInputs = [ libxml2 libffi ]
|
||||||
|
++ optional enablePFM libpfm; # exegesis
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ ncurses zlib ];
|
||||||
|
|
||||||
|
checkInputs = [ which ];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./gnu-install-dirs.patch
|
||||||
|
] ++ lib.optional enablePolly ./gnu-install-dirs-polly.patch;
|
||||||
|
|
||||||
|
postPatch = optionalString stdenv.isDarwin ''
|
||||||
|
substituteInPlace cmake/modules/AddLLVM.cmake \
|
||||||
|
--replace 'set(_install_name_dir INSTALL_NAME_DIR "@rpath")' "set(_install_name_dir)" \
|
||||||
|
--replace 'set(_install_rpath "@loader_path/../''${CMAKE_INSTALL_LIBDIR}''${LLVM_LIBDIR_SUFFIX}" ''${extra_libdir})' ""
|
||||||
|
'' + ''
|
||||||
|
# FileSystem permissions tests fail with various special bits
|
||||||
|
substituteInPlace unittests/Support/CMakeLists.txt \
|
||||||
|
--replace "Path.cpp" ""
|
||||||
|
rm unittests/Support/Path.cpp
|
||||||
|
substituteInPlace unittests/IR/CMakeLists.txt \
|
||||||
|
--replace "PassBuilderCallbacksTest.cpp" ""
|
||||||
|
rm unittests/IR/PassBuilderCallbacksTest.cpp
|
||||||
|
rm test/tools/llvm-objcopy/ELF/mirror-permissions-unix.test
|
||||||
|
'' + optionalString stdenv.hostPlatform.isMusl ''
|
||||||
|
patch -p1 -i ${../../TLI-musl.patch}
|
||||||
|
substituteInPlace unittests/Support/CMakeLists.txt \
|
||||||
|
--replace "add_subdirectory(DynamicLibrary)" ""
|
||||||
|
rm unittests/Support/DynamicLibrary/DynamicLibraryTest.cpp
|
||||||
|
# valgrind unhappy with musl or glibc, but fails w/musl only
|
||||||
|
rm test/CodeGen/AArch64/wineh4.mir
|
||||||
|
'' + optionalString stdenv.hostPlatform.isAarch32 ''
|
||||||
|
# skip failing X86 test cases on 32-bit ARM
|
||||||
|
rm test/DebugInfo/X86/convert-debugloc.ll
|
||||||
|
rm test/DebugInfo/X86/convert-inlined.ll
|
||||||
|
rm test/DebugInfo/X86/convert-linked.ll
|
||||||
|
rm test/tools/dsymutil/X86/op-convert.test
|
||||||
|
'' + optionalString (stdenv.hostPlatform.system == "armv6l-linux") ''
|
||||||
|
# Seems to require certain floating point hardware (NEON?)
|
||||||
|
rm test/ExecutionEngine/frem.ll
|
||||||
|
'' + ''
|
||||||
|
patchShebangs test/BugPoint/compile-custom.ll.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
# hacky fix: created binaries need to be run before installation
|
||||||
|
preBuild = ''
|
||||||
|
mkdir -p $out/
|
||||||
|
ln -sv $PWD/lib $out
|
||||||
|
'';
|
||||||
|
|
||||||
|
# E.g. mesa.drivers use the build-id as a cache key (see #93946):
|
||||||
|
LDFLAGS = optionalString (enableSharedLibraries && !stdenv.isDarwin) "-Wl,--build-id=sha1";
|
||||||
|
|
||||||
|
cmakeFlags = with stdenv; let
|
||||||
|
# These flags influence llvm-config's BuildVariables.inc in addition to the
|
||||||
|
# general build. We need to make sure these are also passed via
|
||||||
|
# CROSS_TOOLCHAIN_FLAGS_NATIVE when cross-compiling or llvm-config-native
|
||||||
|
# will return different results from the cross llvm-config.
|
||||||
|
#
|
||||||
|
# Some flags don't need to be repassed because LLVM already does so (like
|
||||||
|
# CMAKE_BUILD_TYPE), others are irrelevant to the result.
|
||||||
|
flagsForLlvmConfig = [
|
||||||
|
"-DLLVM_INSTALL_CMAKE_DIR=${placeholder "dev"}/lib/cmake/llvm/"
|
||||||
|
"-DLLVM_ENABLE_RTTI=ON"
|
||||||
|
] ++ optionals enableSharedLibraries [
|
||||||
|
"-DLLVM_LINK_LLVM_DYLIB=ON"
|
||||||
|
];
|
||||||
|
in flagsForLlvmConfig ++ [
|
||||||
|
"-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}"
|
||||||
|
"-DLLVM_INSTALL_UTILS=ON" # Needed by rustc
|
||||||
|
"-DLLVM_BUILD_TESTS=${if doCheck then "ON" else "OFF"}"
|
||||||
|
"-DLLVM_ENABLE_FFI=ON"
|
||||||
|
"-DLLVM_HOST_TRIPLE=${stdenv.hostPlatform.config}"
|
||||||
|
"-DLLVM_DEFAULT_TARGET_TRIPLE=${stdenv.hostPlatform.config}"
|
||||||
|
"-DLLVM_ENABLE_DUMP=ON"
|
||||||
|
] ++ optionals stdenv.hostPlatform.isStatic [
|
||||||
|
# Disables building of shared libs, -fPIC is still injected by cc-wrapper
|
||||||
|
"-DLLVM_ENABLE_PIC=OFF"
|
||||||
|
"-DLLVM_BUILD_STATIC=ON"
|
||||||
|
# libxml2 needs to be disabled because the LLVM build system ignores its .la
|
||||||
|
# file and doesn't link zlib as well.
|
||||||
|
# https://github.com/ClangBuiltLinux/tc-build/issues/150#issuecomment-845418812
|
||||||
|
"-DLLVM_ENABLE_LIBXML2=OFF"
|
||||||
|
] ++ optionals enableManpages [
|
||||||
|
"-DLLVM_BUILD_DOCS=ON"
|
||||||
|
"-DLLVM_ENABLE_SPHINX=ON"
|
||||||
|
"-DSPHINX_OUTPUT_MAN=ON"
|
||||||
|
"-DSPHINX_OUTPUT_HTML=OFF"
|
||||||
|
"-DSPHINX_WARNINGS_AS_ERRORS=OFF"
|
||||||
|
] ++ optionals (!isDarwin) [
|
||||||
|
"-DLLVM_BINUTILS_INCDIR=${libbfd.dev}/include"
|
||||||
|
] ++ optionals isDarwin [
|
||||||
|
"-DLLVM_ENABLE_LIBCXX=ON"
|
||||||
|
"-DCAN_TARGET_i386=false"
|
||||||
|
] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
||||||
|
"-DCMAKE_CROSSCOMPILING=True"
|
||||||
|
"-DLLVM_TABLEGEN=${buildLlvmTools.llvm}/bin/llvm-tblgen"
|
||||||
|
(
|
||||||
|
let
|
||||||
|
nativeCC = pkgsBuildBuild.targetPackages.stdenv.cc;
|
||||||
|
nativeBintools = nativeCC.bintools.bintools;
|
||||||
|
nativeToolchainFlags = [
|
||||||
|
"-DCMAKE_C_COMPILER=${nativeCC}/bin/${nativeCC.targetPrefix}cc"
|
||||||
|
"-DCMAKE_CXX_COMPILER=${nativeCC}/bin/${nativeCC.targetPrefix}c++"
|
||||||
|
"-DCMAKE_AR=${nativeBintools}/bin/${nativeBintools.targetPrefix}ar"
|
||||||
|
"-DCMAKE_STRIP=${nativeBintools}/bin/${nativeBintools.targetPrefix}strip"
|
||||||
|
"-DCMAKE_RANLIB=${nativeBintools}/bin/${nativeBintools.targetPrefix}ranlib"
|
||||||
|
];
|
||||||
|
# We need to repass the custom GNUInstallDirs values, otherwise CMake
|
||||||
|
# will choose them for us, leading to wrong results in llvm-config-native
|
||||||
|
nativeInstallFlags = [
|
||||||
|
"-DCMAKE_INSTALL_PREFIX=${placeholder "out"}"
|
||||||
|
"-DCMAKE_INSTALL_BINDIR=${placeholder "out"}/bin"
|
||||||
|
"-DCMAKE_INSTALL_INCLUDEDIR=${placeholder "dev"}/include"
|
||||||
|
"-DCMAKE_INSTALL_LIBDIR=${placeholder "lib"}/lib"
|
||||||
|
"-DCMAKE_INSTALL_LIBEXECDIR=${placeholder "lib"}/libexec"
|
||||||
|
];
|
||||||
|
in "-DCROSS_TOOLCHAIN_FLAGS_NATIVE:list="
|
||||||
|
+ lib.concatStringsSep ";" (lib.concatLists [
|
||||||
|
flagsForLlvmConfig
|
||||||
|
nativeToolchainFlags
|
||||||
|
nativeInstallFlags
|
||||||
|
])
|
||||||
|
)
|
||||||
|
];
|
||||||
|
|
||||||
|
postBuild = ''
|
||||||
|
rm -fR $out
|
||||||
|
'';
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}$PWD/lib
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $python/share
|
||||||
|
mv $out/share/opt-viewer $python/share/opt-viewer
|
||||||
|
moveToOutput "bin/llvm-config*" "$dev"
|
||||||
|
substituteInPlace "$dev/lib/cmake/llvm/LLVMExports-${if debugVersion then "debug" else "release"}.cmake" \
|
||||||
|
--replace "\''${_IMPORT_PREFIX}/lib/lib" "$lib/lib/lib" \
|
||||||
|
--replace "$out/bin/llvm-config" "$dev/bin/llvm-config"
|
||||||
|
substituteInPlace "$dev/lib/cmake/llvm/LLVMConfig.cmake" \
|
||||||
|
--replace 'set(LLVM_BINARY_DIR "''${LLVM_INSTALL_PREFIX}")' 'set(LLVM_BINARY_DIR "''${LLVM_INSTALL_PREFIX}'"$lib"'")'
|
||||||
|
''
|
||||||
|
+ optionalString (stdenv.isDarwin && enableSharedLibraries) ''
|
||||||
|
ln -s $lib/lib/libLLVM.dylib $lib/lib/libLLVM-${shortVersion}.dylib
|
||||||
|
ln -s $lib/lib/libLLVM.dylib $lib/lib/libLLVM-${release_version}.dylib
|
||||||
|
''
|
||||||
|
+ optionalString (stdenv.buildPlatform != stdenv.hostPlatform) ''
|
||||||
|
cp NATIVE/bin/llvm-config $dev/bin/llvm-config-native
|
||||||
|
'';
|
||||||
|
|
||||||
|
doCheck = stdenv.isLinux && (!stdenv.isx86_32) && (!stdenv.hostPlatform.isMusl)
|
||||||
|
&& (stdenv.hostPlatform == stdenv.buildPlatform);
|
||||||
|
|
||||||
|
checkTarget = "check-all";
|
||||||
|
|
||||||
|
requiredSystemFeatures = [ "big-parallel" ];
|
||||||
|
meta = llvm_meta // {
|
||||||
|
homepage = "https://llvm.org/";
|
||||||
|
description = "A collection of modular and reusable compiler and toolchain technologies";
|
||||||
|
longDescription = ''
|
||||||
|
The LLVM Project is a collection of modular and reusable compiler and
|
||||||
|
toolchain technologies. Despite its name, LLVM has little to do with
|
||||||
|
traditional virtual machines. The name "LLVM" itself is not an acronym; it
|
||||||
|
is the full name of the project.
|
||||||
|
LLVM began as a research project at the University of Illinois, with the
|
||||||
|
goal of providing a modern, SSA-based compilation strategy capable of
|
||||||
|
supporting both static and dynamic compilation of arbitrary programming
|
||||||
|
languages. Since then, LLVM has grown to be an umbrella project consisting
|
||||||
|
of a number of subprojects, many of which are being used in production by
|
||||||
|
a wide variety of commercial and open source projects as well as being
|
||||||
|
widely used in academic research. Code in the LLVM project is licensed
|
||||||
|
under the "Apache 2.0 License with LLVM exceptions".
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
} // lib.optionalAttrs enableManpages {
|
||||||
|
pname = "llvm-manpages";
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
make docs-llvm-man
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = [];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
make -C docs install
|
||||||
|
'';
|
||||||
|
|
||||||
|
postPatch = null;
|
||||||
|
postInstall = null;
|
||||||
|
|
||||||
|
outputs = [ "out" ];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = llvm_meta // {
|
||||||
|
description = "man pages for LLVM ${version}";
|
||||||
|
};
|
||||||
|
})
|
@ -0,0 +1,102 @@
|
|||||||
|
diff --git a/tools/polly/CMakeLists.txt b/tools/polly/CMakeLists.txt
|
||||||
|
index ca7c04c565bb..6a6155806ffa 100644
|
||||||
|
--- a/tools/polly/CMakeLists.txt
|
||||||
|
+++ b/tools/polly/CMakeLists.txt
|
||||||
|
@@ -3,6 +3,8 @@ if (NOT DEFINED LLVM_MAIN_SRC_DIR)
|
||||||
|
project(Polly)
|
||||||
|
cmake_minimum_required(VERSION 3.13.4)
|
||||||
|
|
||||||
|
+ include(GNUInstallDirs)
|
||||||
|
+
|
||||||
|
# Where is LLVM installed?
|
||||||
|
find_package(LLVM CONFIG REQUIRED)
|
||||||
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${LLVM_CMAKE_DIR})
|
||||||
|
@@ -122,13 +124,13 @@ include_directories(
|
||||||
|
|
||||||
|
if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
|
||||||
|
install(DIRECTORY include/
|
||||||
|
- DESTINATION include
|
||||||
|
+ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
||||||
|
FILES_MATCHING
|
||||||
|
PATTERN "*.h"
|
||||||
|
)
|
||||||
|
|
||||||
|
install(DIRECTORY ${POLLY_BINARY_DIR}/include/
|
||||||
|
- DESTINATION include
|
||||||
|
+ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
||||||
|
FILES_MATCHING
|
||||||
|
PATTERN "*.h"
|
||||||
|
PATTERN "CMakeFiles" EXCLUDE
|
||||||
|
diff --git a/tools/polly/cmake/CMakeLists.txt b/tools/polly/cmake/CMakeLists.txt
|
||||||
|
index 7cc129ba2e90..137be25e4b80 100644
|
||||||
|
--- a/tools/polly/cmake/CMakeLists.txt
|
||||||
|
+++ b/tools/polly/cmake/CMakeLists.txt
|
||||||
|
@@ -79,18 +79,18 @@ file(GENERATE
|
||||||
|
|
||||||
|
# Generate PollyConfig.cmake for the install tree.
|
||||||
|
unset(POLLY_EXPORTS)
|
||||||
|
-set(POLLY_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||||
|
+set(POLLY_INSTALL_PREFIX "")
|
||||||
|
set(POLLY_CONFIG_LLVM_CMAKE_DIR "${LLVM_BINARY_DIR}/${LLVM_INSTALL_PACKAGE_DIR}")
|
||||||
|
-set(POLLY_CONFIG_CMAKE_DIR "${POLLY_INSTALL_PREFIX}/${POLLY_INSTALL_PACKAGE_DIR}")
|
||||||
|
-set(POLLY_CONFIG_LIBRARY_DIRS "${POLLY_INSTALL_PREFIX}/lib${LLVM_LIBDIR_SUFFIX}")
|
||||||
|
+set(POLLY_CONFIG_CMAKE_DIR "${POLLY_INSTALL_PREFIX}${CMAKE_INSTALL_PREFIX}/${POLLY_INSTALL_PACKAGE_DIR}")
|
||||||
|
+set(POLLY_CONFIG_LIBRARY_DIRS "${POLLY_INSTALL_PREFIX}${CMAKE_INSTALL_FULL_LIBDIR}${LLVM_LIBDIR_SUFFIX}")
|
||||||
|
if (POLLY_BUNDLED_ISL)
|
||||||
|
set(POLLY_CONFIG_INCLUDE_DIRS
|
||||||
|
- "${POLLY_INSTALL_PREFIX}/include"
|
||||||
|
- "${POLLY_INSTALL_PREFIX}/include/polly"
|
||||||
|
+ "${POLLY_INSTALL_PREFIX}${CMAKE_INSTALL_FULL_LIBDIR}"
|
||||||
|
+ "${POLLY_INSTALL_PREFIX}${CMAKE_INSTALL_FULL_LIBDIR}/polly"
|
||||||
|
)
|
||||||
|
else()
|
||||||
|
set(POLLY_CONFIG_INCLUDE_DIRS
|
||||||
|
- "${POLLY_INSTALL_PREFIX}/include"
|
||||||
|
+ "${POLLY_INSTALL_PREFIX}${CMAKE_INSTALL_FULL_INCLUDEDIR}"
|
||||||
|
${ISL_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
@@ -100,12 +100,12 @@ endif()
|
||||||
|
foreach(tgt IN LISTS POLLY_CONFIG_EXPORTED_TARGETS)
|
||||||
|
get_target_property(tgt_type ${tgt} TYPE)
|
||||||
|
if (tgt_type STREQUAL "EXECUTABLE")
|
||||||
|
- set(tgt_prefix "bin/")
|
||||||
|
+ set(tgt_prefix "${CMAKE_INSTALL_BINDIR}/")
|
||||||
|
else()
|
||||||
|
- set(tgt_prefix "lib/")
|
||||||
|
+ set(tgt_prefix "${CMAKE_INSTALL_LIBDIR}/")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
- set(tgt_path "${CMAKE_INSTALL_PREFIX}/${tgt_prefix}$<TARGET_FILE_NAME:${tgt}>")
|
||||||
|
+ set(tgt_path "${tgt_prefix}$<TARGET_FILE_NAME:${tgt}>")
|
||||||
|
file(RELATIVE_PATH tgt_path ${POLLY_CONFIG_CMAKE_DIR} ${tgt_path})
|
||||||
|
|
||||||
|
if (NOT tgt_type STREQUAL "INTERFACE_LIBRARY")
|
||||||
|
diff --git a/tools/polly/cmake/polly_macros.cmake b/tools/polly/cmake/polly_macros.cmake
|
||||||
|
index 518a09b45a42..bd9d6f5542ad 100644
|
||||||
|
--- a/tools/polly/cmake/polly_macros.cmake
|
||||||
|
+++ b/tools/polly/cmake/polly_macros.cmake
|
||||||
|
@@ -44,8 +44,8 @@ macro(add_polly_library name)
|
||||||
|
if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY OR ${name} STREQUAL "LLVMPolly")
|
||||||
|
install(TARGETS ${name}
|
||||||
|
EXPORT LLVMExports
|
||||||
|
- LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
|
||||||
|
- ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
|
||||||
|
+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}
|
||||||
|
+ ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX})
|
||||||
|
endif()
|
||||||
|
set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${name})
|
||||||
|
endmacro(add_polly_library)
|
||||||
|
diff --git a/tools/polly/lib/External/CMakeLists.txt b/tools/polly/lib/External/CMakeLists.txt
|
||||||
|
index e3a5683fccdc..293b482eb28a 100644
|
||||||
|
--- a/tools/polly/lib/External/CMakeLists.txt
|
||||||
|
+++ b/tools/polly/lib/External/CMakeLists.txt
|
||||||
|
@@ -290,7 +290,7 @@ if (POLLY_BUNDLED_ISL)
|
||||||
|
install(DIRECTORY
|
||||||
|
${ISL_SOURCE_DIR}/include/
|
||||||
|
${ISL_BINARY_DIR}/include/
|
||||||
|
- DESTINATION include/polly
|
||||||
|
+ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/polly
|
||||||
|
FILES_MATCHING
|
||||||
|
PATTERN "*.h"
|
||||||
|
PATTERN "CMakeFiles" EXCLUDE
|
220
pkgs/development/compilers/llvm/14/llvm/gnu-install-dirs.patch
Normal file
220
pkgs/development/compilers/llvm/14/llvm/gnu-install-dirs.patch
Normal file
@ -0,0 +1,220 @@
|
|||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index fec956091cd5..5a766f5c5d7c 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -303,6 +303,9 @@ set(LLVM_EXAMPLES_INSTALL_DIR "examples" CACHE STRING
|
||||||
|
"Path for examples subdirectory (enabled by LLVM_BUILD_EXAMPLES=ON) (defaults to 'examples')")
|
||||||
|
mark_as_advanced(LLVM_EXAMPLES_INSTALL_DIR)
|
||||||
|
|
||||||
|
+set(LLVM_INSTALL_CMAKE_DIR "${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}/cmake/llvm" CACHE STRING
|
||||||
|
+ "Path for CMake subdirectory (defaults to lib/cmake/llvm)" )
|
||||||
|
+
|
||||||
|
# They are used as destination of target generators.
|
||||||
|
set(LLVM_RUNTIME_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/bin)
|
||||||
|
set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib${LLVM_LIBDIR_SUFFIX})
|
||||||
|
diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake
|
||||||
|
index fed1fec7d72e..4baed19b9e98 100644
|
||||||
|
--- a/cmake/modules/AddLLVM.cmake
|
||||||
|
+++ b/cmake/modules/AddLLVM.cmake
|
||||||
|
@@ -838,8 +838,8 @@ macro(add_llvm_library name)
|
||||||
|
get_target_export_arg(${name} LLVM export_to_llvmexports ${umbrella})
|
||||||
|
install(TARGETS ${name}
|
||||||
|
${export_to_llvmexports}
|
||||||
|
- LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX} COMPONENT ${name}
|
||||||
|
- ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX} COMPONENT ${name}
|
||||||
|
+ LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}" COMPONENT ${name}
|
||||||
|
+ ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}" COMPONENT ${name}
|
||||||
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" COMPONENT ${name})
|
||||||
|
|
||||||
|
if (NOT LLVM_ENABLE_IDE)
|
||||||
|
@@ -1056,7 +1056,7 @@ function(process_llvm_pass_plugins)
|
||||||
|
"set(LLVM_STATIC_EXTENSIONS ${LLVM_STATIC_EXTENSIONS})")
|
||||||
|
install(FILES
|
||||||
|
${llvm_cmake_builddir}/LLVMConfigExtensions.cmake
|
||||||
|
- DESTINATION ${LLVM_INSTALL_PACKAGE_DIR}
|
||||||
|
+ DESTINATION ${LLVM_INSTALL_CMAKE_DIR}
|
||||||
|
COMPONENT cmake-exports)
|
||||||
|
|
||||||
|
set(ExtensionDef "${LLVM_BINARY_DIR}/include/llvm/Support/Extension.def")
|
||||||
|
@@ -1902,7 +1902,7 @@ function(llvm_install_library_symlink name dest type)
|
||||||
|
set(full_name ${CMAKE_${type}_LIBRARY_PREFIX}${name}${CMAKE_${type}_LIBRARY_SUFFIX})
|
||||||
|
set(full_dest ${CMAKE_${type}_LIBRARY_PREFIX}${dest}${CMAKE_${type}_LIBRARY_SUFFIX})
|
||||||
|
|
||||||
|
- set(output_dir lib${LLVM_LIBDIR_SUFFIX})
|
||||||
|
+ set(output_dir ${CMAKE_INSTALL_FULL_LIBDIR}${LLVM_LIBDIR_SUFFIX})
|
||||||
|
if(WIN32 AND "${type}" STREQUAL "SHARED")
|
||||||
|
set(output_dir bin)
|
||||||
|
endif()
|
||||||
|
@@ -1913,7 +1913,7 @@ function(llvm_install_library_symlink name dest type)
|
||||||
|
|
||||||
|
endfunction()
|
||||||
|
|
||||||
|
-function(llvm_install_symlink name dest)
|
||||||
|
+function(llvm_install_symlink name dest output_dir)
|
||||||
|
cmake_parse_arguments(ARG "ALWAYS_GENERATE" "COMPONENT" "" ${ARGN})
|
||||||
|
foreach(path ${CMAKE_MODULE_PATH})
|
||||||
|
if(EXISTS ${path}/LLVMInstallSymlink.cmake)
|
||||||
|
@@ -1936,7 +1936,7 @@ function(llvm_install_symlink name dest)
|
||||||
|
set(full_dest ${dest}${CMAKE_EXECUTABLE_SUFFIX})
|
||||||
|
|
||||||
|
install(SCRIPT ${INSTALL_SYMLINK}
|
||||||
|
- CODE "install_symlink(${full_name} ${full_dest} ${LLVM_TOOLS_INSTALL_DIR})"
|
||||||
|
+ CODE "install_symlink(${full_name} ${full_dest} ${output_dir})"
|
||||||
|
COMPONENT ${component})
|
||||||
|
|
||||||
|
if (NOT LLVM_ENABLE_IDE AND NOT ARG_ALWAYS_GENERATE)
|
||||||
|
@@ -2019,7 +2019,8 @@ function(add_llvm_tool_symlink link_name target)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if ((TOOL_IS_TOOLCHAIN OR NOT LLVM_INSTALL_TOOLCHAIN_ONLY) AND LLVM_BUILD_TOOLS)
|
||||||
|
- llvm_install_symlink(${link_name} ${target})
|
||||||
|
+ GNUInstallDirs_get_absolute_install_dir(output_dir LLVM_TOOLS_INSTALL_DIR)
|
||||||
|
+ llvm_install_symlink(${link_name} ${target} ${output_dir})
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
endfunction()
|
||||||
|
@@ -2148,9 +2149,9 @@ function(llvm_setup_rpath name)
|
||||||
|
# Since BUILD_SHARED_LIBS is only recommended for use by developers,
|
||||||
|
# hardcode the rpath to build/install lib dir first in this mode.
|
||||||
|
# FIXME: update this when there is better solution.
|
||||||
|
- set(_install_rpath "${LLVM_LIBRARY_OUTPUT_INTDIR}" "${CMAKE_INSTALL_PREFIX}/lib${LLVM_LIBDIR_SUFFIX}" ${extra_libdir})
|
||||||
|
+ set(_install_rpath "${LLVM_LIBRARY_OUTPUT_INTDIR}" "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}" ${extra_libdir})
|
||||||
|
elseif(UNIX)
|
||||||
|
- set(_install_rpath "\$ORIGIN/../lib${LLVM_LIBDIR_SUFFIX}" ${extra_libdir})
|
||||||
|
+ set(_install_rpath "\$ORIGIN/../${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}" ${extra_libdir})
|
||||||
|
if(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|DragonFly)")
|
||||||
|
set_property(TARGET ${name} APPEND_STRING PROPERTY
|
||||||
|
LINK_FLAGS " -Wl,-z,origin ")
|
||||||
|
diff --git a/cmake/modules/AddOCaml.cmake b/cmake/modules/AddOCaml.cmake
|
||||||
|
index 891c9e6d618c..8d963f3b0069 100644
|
||||||
|
--- a/cmake/modules/AddOCaml.cmake
|
||||||
|
+++ b/cmake/modules/AddOCaml.cmake
|
||||||
|
@@ -147,9 +147,9 @@ function(add_ocaml_library name)
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
if( APPLE )
|
||||||
|
- set(ocaml_rpath "@executable_path/../../../lib${LLVM_LIBDIR_SUFFIX}")
|
||||||
|
+ set(ocaml_rpath "@executable_path/../../../${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}")
|
||||||
|
elseif( UNIX )
|
||||||
|
- set(ocaml_rpath "\\$ORIGIN/../../../lib${LLVM_LIBDIR_SUFFIX}")
|
||||||
|
+ set(ocaml_rpath "\\$ORIGIN/../../../${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}")
|
||||||
|
endif()
|
||||||
|
list(APPEND ocaml_flags "-ldopt" "-Wl,-rpath,${ocaml_rpath}")
|
||||||
|
|
||||||
|
diff --git a/cmake/modules/CMakeLists.txt b/cmake/modules/CMakeLists.txt
|
||||||
|
index cea0c1df0a14..eedcd9450312 100644
|
||||||
|
--- a/cmake/modules/CMakeLists.txt
|
||||||
|
+++ b/cmake/modules/CMakeLists.txt
|
||||||
|
@@ -2,7 +2,7 @@ include(ExtendPath)
|
||||||
|
include(LLVMDistributionSupport)
|
||||||
|
include(FindPrefixFromConfig)
|
||||||
|
|
||||||
|
-set(LLVM_INSTALL_PACKAGE_DIR lib${LLVM_LIBDIR_SUFFIX}/cmake/llvm)
|
||||||
|
+set(LLVM_INSTALL_PACKAGE_DIR ${LLVM_INSTALL_CMAKE_DIR} CACHE STRING "Path for CMake subdirectory (defaults to 'cmake/llvm')")
|
||||||
|
set(llvm_cmake_builddir "${LLVM_BINARY_DIR}/${LLVM_INSTALL_PACKAGE_DIR}")
|
||||||
|
|
||||||
|
# First for users who use an installed LLVM, create the LLVMExports.cmake file.
|
||||||
|
@@ -122,7 +122,7 @@ set(LLVM_CONFIG_INCLUDE_DIRS
|
||||||
|
)
|
||||||
|
list(REMOVE_DUPLICATES LLVM_CONFIG_INCLUDE_DIRS)
|
||||||
|
|
||||||
|
-extend_path(LLVM_CONFIG_LIBRARY_DIR "\${LLVM_INSTALL_PREFIX}" "lib\${LLVM_LIBDIR_SUFFIX}")
|
||||||
|
+extend_path(LLVM_CONFIG_LIBRARY_DIR "\${LLVM_INSTALL_PREFIX}" "${CMAKE_INSTALL_LIBDIR}\${LLVM_LIBDIR_SUFFIX}")
|
||||||
|
set(LLVM_CONFIG_LIBRARY_DIRS
|
||||||
|
"${LLVM_CONFIG_LIBRARY_DIR}"
|
||||||
|
# FIXME: Should there be other entries here?
|
||||||
|
diff --git a/cmake/modules/LLVMInstallSymlink.cmake b/cmake/modules/LLVMInstallSymlink.cmake
|
||||||
|
index b5c35f706cb7..9261ab797de6 100644
|
||||||
|
--- a/cmake/modules/LLVMInstallSymlink.cmake
|
||||||
|
+++ b/cmake/modules/LLVMInstallSymlink.cmake
|
||||||
|
@@ -6,7 +6,7 @@ include(GNUInstallDirs)
|
||||||
|
|
||||||
|
function(install_symlink name target outdir)
|
||||||
|
set(DESTDIR $ENV{DESTDIR})
|
||||||
|
- set(bindir "${DESTDIR}${CMAKE_INSTALL_PREFIX}/${outdir}")
|
||||||
|
+ set(bindir "${DESTDIR}${outdir}/")
|
||||||
|
|
||||||
|
message(STATUS "Creating ${name}")
|
||||||
|
|
||||||
|
diff --git a/docs/CMake.rst b/docs/CMake.rst
|
||||||
|
index 044ec8a4d39d..504d0eac3ade 100644
|
||||||
|
--- a/docs/CMake.rst
|
||||||
|
+++ b/docs/CMake.rst
|
||||||
|
@@ -224,7 +224,7 @@ description is in `LLVM-related variables`_ below.
|
||||||
|
**LLVM_LIBDIR_SUFFIX**:STRING
|
||||||
|
Extra suffix to append to the directory where libraries are to be
|
||||||
|
installed. On a 64-bit architecture, one could use ``-DLLVM_LIBDIR_SUFFIX=64``
|
||||||
|
- to install libraries to ``/usr/lib64``.
|
||||||
|
+ to install libraries to ``/usr/lib64``. See also ``CMAKE_INSTALL_LIBDIR``.
|
||||||
|
|
||||||
|
**LLVM_PARALLEL_{COMPILE,LINK}_JOBS**:STRING
|
||||||
|
Building the llvm toolchain can use a lot of resources, particularly
|
||||||
|
@@ -910,9 +910,11 @@ the ``cmake`` command or by setting it directly in ``ccmake`` or ``cmake-gui``).
|
||||||
|
|
||||||
|
This file is available in two different locations.
|
||||||
|
|
||||||
|
-* ``<INSTALL_PREFIX>/lib/cmake/llvm/LLVMConfig.cmake`` where
|
||||||
|
- ``<INSTALL_PREFIX>`` is the install prefix of an installed version of LLVM.
|
||||||
|
- On Linux typically this is ``/usr/lib/cmake/llvm/LLVMConfig.cmake``.
|
||||||
|
+* ``<LLVM_INSTALL_PACKAGE_DIR>LLVMConfig.cmake`` where
|
||||||
|
+ ``<LLVM_INSTALL_PACKAGE_DIR>`` is the location where LLVM CMake modules are
|
||||||
|
+ installed as part of an installed version of LLVM. This is typically
|
||||||
|
+ ``cmake/llvm/`` within the lib directory. On Linux, this is typically
|
||||||
|
+ ``/usr/lib/cmake/llvm/LLVMConfig.cmake``.
|
||||||
|
|
||||||
|
* ``<LLVM_BUILD_ROOT>/lib/cmake/llvm/LLVMConfig.cmake`` where
|
||||||
|
``<LLVM_BUILD_ROOT>`` is the root of the LLVM build tree. **Note: this is only
|
||||||
|
diff --git a/include/llvm/CMakeLists.txt b/include/llvm/CMakeLists.txt
|
||||||
|
index b46319f24fc8..2feabd1954e4 100644
|
||||||
|
--- a/include/llvm/CMakeLists.txt
|
||||||
|
+++ b/include/llvm/CMakeLists.txt
|
||||||
|
@@ -5,5 +5,5 @@ add_subdirectory(Frontend)
|
||||||
|
# If we're doing an out-of-tree build, copy a module map for generated
|
||||||
|
# header files into the build area.
|
||||||
|
if (NOT "${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
|
||||||
|
- configure_file(module.modulemap.build module.modulemap COPYONLY)
|
||||||
|
+ configure_file(module.modulemap.build ${LLVM_INCLUDE_DIR}/module.modulemap COPYONLY)
|
||||||
|
endif (NOT "${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
|
||||||
|
diff --git a/tools/llvm-config/BuildVariables.inc.in b/tools/llvm-config/BuildVariables.inc.in
|
||||||
|
index abbb8a450da6..70c497be12f5 100644
|
||||||
|
--- a/tools/llvm-config/BuildVariables.inc.in
|
||||||
|
+++ b/tools/llvm-config/BuildVariables.inc.in
|
||||||
|
@@ -23,7 +23,10 @@
|
||||||
|
#define LLVM_CXXFLAGS "@LLVM_CXXFLAGS@"
|
||||||
|
#define LLVM_BUILDMODE "@LLVM_BUILDMODE@"
|
||||||
|
#define LLVM_LIBDIR_SUFFIX "@LLVM_LIBDIR_SUFFIX@"
|
||||||
|
+#define LLVM_INSTALL_BINDIR "@CMAKE_INSTALL_BINDIR@"
|
||||||
|
+#define LLVM_INSTALL_LIBDIR "@CMAKE_INSTALL_LIBDIR@"
|
||||||
|
#define LLVM_INSTALL_INCLUDEDIR "@CMAKE_INSTALL_INCLUDEDIR@"
|
||||||
|
+#define LLVM_INSTALL_CMAKEDIR "@LLVM_INSTALL_CMAKE_DIR@"
|
||||||
|
#define LLVM_TARGETS_BUILT "@LLVM_TARGETS_BUILT@"
|
||||||
|
#define LLVM_SYSTEM_LIBS "@LLVM_SYSTEM_LIBS@"
|
||||||
|
#define LLVM_BUILD_SYSTEM "@LLVM_BUILD_SYSTEM@"
|
||||||
|
diff --git a/tools/llvm-config/llvm-config.cpp b/tools/llvm-config/llvm-config.cpp
|
||||||
|
index 8ed88f33ead4..5e7184bab90d 100644
|
||||||
|
--- a/tools/llvm-config/llvm-config.cpp
|
||||||
|
+++ b/tools/llvm-config/llvm-config.cpp
|
||||||
|
@@ -363,12 +363,20 @@ int main(int argc, char **argv) {
|
||||||
|
ActiveIncludeDir = std::string(Path.str());
|
||||||
|
}
|
||||||
|
{
|
||||||
|
- SmallString<256> Path(LLVM_TOOLS_INSTALL_DIR);
|
||||||
|
+ SmallString<256> Path(LLVM_INSTALL_BINDIR);
|
||||||
|
sys::fs::make_absolute(ActivePrefix, Path);
|
||||||
|
ActiveBinDir = std::string(Path.str());
|
||||||
|
}
|
||||||
|
- ActiveLibDir = ActivePrefix + "/lib" + LLVM_LIBDIR_SUFFIX;
|
||||||
|
- ActiveCMakeDir = ActiveLibDir + "/cmake/llvm";
|
||||||
|
+ {
|
||||||
|
+ SmallString<256> Path(LLVM_INSTALL_LIBDIR LLVM_LIBDIR_SUFFIX);
|
||||||
|
+ sys::fs::make_absolute(ActivePrefix, Path);
|
||||||
|
+ ActiveLibDir = std::string(Path.str());
|
||||||
|
+ }
|
||||||
|
+ {
|
||||||
|
+ SmallString<256> Path(LLVM_INSTALL_CMAKEDIR);
|
||||||
|
+ sys::fs::make_absolute(ActivePrefix, Path);
|
||||||
|
+ ActiveCMakeDir = std::string(Path.str());
|
||||||
|
+ }
|
||||||
|
ActiveIncludeOption = "-I" + ActiveIncludeDir;
|
||||||
|
}
|
||||||
|
|
54
pkgs/development/compilers/llvm/14/openmp/default.nix
Normal file
54
pkgs/development/compilers/llvm/14/openmp/default.nix
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, llvm_meta
|
||||||
|
, monorepoSrc
|
||||||
|
, runCommand
|
||||||
|
, cmake
|
||||||
|
, llvm
|
||||||
|
, clang-unwrapped
|
||||||
|
, perl
|
||||||
|
, pkg-config
|
||||||
|
, version
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "openmp";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
src = runCommand "${pname}-src-${version}" {} ''
|
||||||
|
mkdir -p "$out"
|
||||||
|
cp -r ${monorepoSrc}/cmake "$out"
|
||||||
|
cp -r ${monorepoSrc}/${pname} "$out"
|
||||||
|
'';
|
||||||
|
|
||||||
|
sourceRoot = "${src.name}/${pname}";
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./gnu-install-dirs.patch
|
||||||
|
./fix-find-tool.patch
|
||||||
|
];
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake perl pkg-config clang-unwrapped ];
|
||||||
|
buildInputs = [ llvm ];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DLIBOMPTARGET_BUILD_AMDGCN_BCLIB=OFF" # Building the AMDGCN device RTL currently fails
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = llvm_meta // {
|
||||||
|
homepage = "https://openmp.llvm.org/";
|
||||||
|
description = "Support for the OpenMP language";
|
||||||
|
longDescription = ''
|
||||||
|
The OpenMP subproject of LLVM contains the components required to build an
|
||||||
|
executable OpenMP program that are outside the compiler itself.
|
||||||
|
Contains the code for the runtime library against which code compiled by
|
||||||
|
"clang -fopenmp" must be linked before it can run and the library that
|
||||||
|
supports offload to target devices.
|
||||||
|
'';
|
||||||
|
# "All of the code is dual licensed under the MIT license and the UIUC
|
||||||
|
# License (a BSD-like license)":
|
||||||
|
license = with lib.licenses; [ mit ncsa ];
|
||||||
|
};
|
||||||
|
}
|
@ -0,0 +1,54 @@
|
|||||||
|
diff --git a/libomptarget/DeviceRTL/CMakeLists.txt b/libomptarget/DeviceRTL/CMakeLists.txt
|
||||||
|
index 242df638f80d..a4654e96371f 100644
|
||||||
|
--- a/libomptarget/DeviceRTL/CMakeLists.txt
|
||||||
|
+++ b/libomptarget/DeviceRTL/CMakeLists.txt
|
||||||
|
@@ -25,16 +25,16 @@ endif()
|
||||||
|
|
||||||
|
if (LLVM_DIR)
|
||||||
|
# Builds that use pre-installed LLVM have LLVM_DIR set.
|
||||||
|
- find_program(CLANG_TOOL clang PATHS ${LLVM_TOOLS_BINARY_DIR} NO_DEFAULT_PATH)
|
||||||
|
+ find_program(CLANG_TOOL clang PATHS ${LLVM_TOOLS_BINARY_DIR} REQUIRED)
|
||||||
|
find_program(LINK_TOOL llvm-link PATHS ${LLVM_TOOLS_BINARY_DIR}
|
||||||
|
- NO_DEFAULT_PATH)
|
||||||
|
- find_program(OPT_TOOL opt PATHS ${LLVM_TOOLS_BINARY_DIR} NO_DEFAULT_PATH)
|
||||||
|
+ REQUIRED)
|
||||||
|
+ find_program(OPT_TOOL opt PATHS ${LLVM_TOOLS_BINARY_DIR} REQUIRED)
|
||||||
|
libomptarget_say("Building DeviceRTL. Using clang: ${CLANG_TOOL}")
|
||||||
|
elseif (LLVM_TOOL_CLANG_BUILD AND NOT CMAKE_CROSSCOMPILING AND NOT OPENMP_STANDALONE_BUILD)
|
||||||
|
# LLVM in-tree builds may use CMake target names to discover the tools.
|
||||||
|
- set(CLANG_TOOL $<TARGET_FILE:clang>)
|
||||||
|
- set(LINK_TOOL $<TARGET_FILE:llvm-link>)
|
||||||
|
- set(OPT_TOOL $<TARGET_FILE:opt>)
|
||||||
|
+ set(CLANG_TOOL $<TARGET_FILE:clang> REQUIRED)
|
||||||
|
+ set(LINK_TOOL $<TARGET_FILE:llvm-link> REQUIRED)
|
||||||
|
+ set(OPT_TOOL $<TARGET_FILE:opt> REQUIRED)
|
||||||
|
libomptarget_say("Building DeviceRTL. Using clang from in-tree build")
|
||||||
|
else()
|
||||||
|
libomptarget_say("Not building DeviceRTL. No appropriate clang found")
|
||||||
|
diff --git a/libomptarget/deviceRTLs/amdgcn/CMakeLists.txt b/libomptarget/deviceRTLs/amdgcn/CMakeLists.txt
|
||||||
|
index 3f4c02671aeb..be9f4677d7b5 100644
|
||||||
|
--- a/libomptarget/deviceRTLs/amdgcn/CMakeLists.txt
|
||||||
|
+++ b/libomptarget/deviceRTLs/amdgcn/CMakeLists.txt
|
||||||
|
@@ -38,16 +38,16 @@ endif()
|
||||||
|
|
||||||
|
if (LLVM_DIR)
|
||||||
|
# Builds that use pre-installed LLVM have LLVM_DIR set.
|
||||||
|
- find_program(CLANG_TOOL clang PATHS ${LLVM_TOOLS_BINARY_DIR} NO_DEFAULT_PATH)
|
||||||
|
+ find_program(CLANG_TOOL clang PATHS ${LLVM_TOOLS_BINARY_DIR} REQUIRED)
|
||||||
|
find_program(LINK_TOOL llvm-link PATHS ${LLVM_TOOLS_BINARY_DIR}
|
||||||
|
- NO_DEFAULT_PATH)
|
||||||
|
- find_program(OPT_TOOL opt PATHS ${LLVM_TOOLS_BINARY_DIR} NO_DEFAULT_PATH)
|
||||||
|
+ REQUIRED)
|
||||||
|
+ find_program(OPT_TOOL opt PATHS ${LLVM_TOOLS_BINARY_DIR} REQUIRED)
|
||||||
|
libomptarget_say("Building AMDGCN device RTL. Using clang: ${CLANG_TOOL}")
|
||||||
|
elseif (LLVM_TOOL_CLANG_BUILD AND NOT CMAKE_CROSSCOMPILING AND NOT OPENMP_STANDALONE_BUILD)
|
||||||
|
# LLVM in-tree builds may use CMake target names to discover the tools.
|
||||||
|
- set(CLANG_TOOL $<TARGET_FILE:clang>)
|
||||||
|
- set(LINK_TOOL $<TARGET_FILE:llvm-link>)
|
||||||
|
- set(OPT_TOOL $<TARGET_FILE:opt>)
|
||||||
|
+ set(CLANG_TOOL $<TARGET_FILE:clang> REQUIRED)
|
||||||
|
+ set(LINK_TOOL $<TARGET_FILE:llvm-link> REQUIRED)
|
||||||
|
+ set(OPT_TOOL $<TARGET_FILE:opt> REQUIRED)
|
||||||
|
libomptarget_say("Building AMDGCN device RTL. Using clang from in-tree build")
|
||||||
|
else()
|
||||||
|
libomptarget_say("Not building AMDGCN device RTL. No appropriate clang found")
|
@ -0,0 +1,89 @@
|
|||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index 7f11a05f5622..fb90f8f6a49b 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -8,6 +8,8 @@ if (OPENMP_STANDALONE_BUILD OR "${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_S
|
||||||
|
set(OPENMP_STANDALONE_BUILD TRUE)
|
||||||
|
project(openmp C CXX)
|
||||||
|
|
||||||
|
+ include(GNUInstallDirs)
|
||||||
|
+
|
||||||
|
# CMAKE_BUILD_TYPE was not set, default to Release.
|
||||||
|
if (NOT CMAKE_BUILD_TYPE)
|
||||||
|
set(CMAKE_BUILD_TYPE Release)
|
||||||
|
@@ -19,7 +21,7 @@ if (OPENMP_STANDALONE_BUILD OR "${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_S
|
||||||
|
set(OPENMP_LIBDIR_SUFFIX "" CACHE STRING
|
||||||
|
"Suffix of lib installation directory, e.g. 64 => lib64")
|
||||||
|
# Do not use OPENMP_LIBDIR_SUFFIX directly, use OPENMP_INSTALL_LIBDIR.
|
||||||
|
- set(OPENMP_INSTALL_LIBDIR "lib${OPENMP_LIBDIR_SUFFIX}")
|
||||||
|
+ set(OPENMP_INSTALL_LIBDIR "${CMAKE_INSTALL_LIBDIR}${OPENMP_LIBDIR_SUFFIX}")
|
||||||
|
|
||||||
|
# Group test settings.
|
||||||
|
set(OPENMP_TEST_C_COMPILER ${CMAKE_C_COMPILER} CACHE STRING
|
||||||
|
@@ -30,7 +32,7 @@ if (OPENMP_STANDALONE_BUILD OR "${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_S
|
||||||
|
else()
|
||||||
|
set(OPENMP_ENABLE_WERROR ${LLVM_ENABLE_WERROR})
|
||||||
|
# If building in tree, we honor the same install suffix LLVM uses.
|
||||||
|
- set(OPENMP_INSTALL_LIBDIR "lib${LLVM_LIBDIR_SUFFIX}")
|
||||||
|
+ set(OPENMP_INSTALL_LIBDIR "${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}")
|
||||||
|
|
||||||
|
if (NOT MSVC)
|
||||||
|
set(OPENMP_TEST_C_COMPILER ${LLVM_RUNTIME_OUTPUT_INTDIR}/clang)
|
||||||
|
index 0e1ce2afd154..8b3810f83713 100644
|
||||||
|
--- a/libomptarget/plugins/amdgpu/CMakeLists.txt
|
||||||
|
+++ b/libomptarget/plugins/amdgpu/CMakeLists.txt
|
||||||
|
@@ -80,7 +80,7 @@ add_library(omptarget.rtl.amdgpu SHARED
|
||||||
|
|
||||||
|
# Install plugin under the lib destination folder.
|
||||||
|
# When we build for debug, OPENMP_LIBDIR_SUFFIX get set to -debug
|
||||||
|
-install(TARGETS omptarget.rtl.amdgpu LIBRARY DESTINATION "lib${OPENMP_LIBDIR_SUFFIX}")
|
||||||
|
+install(TARGETS omptarget.rtl.amdgpu LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}${OPENMP_LIBDIR_SUFFIX}")
|
||||||
|
set_property(TARGET omptarget.rtl.amdgpu PROPERTY INSTALL_RPATH_USE_LINK_PATH ON)
|
||||||
|
|
||||||
|
if(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
||||||
|
diff --git a/libomptarget/plugins/ve/CMakeLists.txt b/libomptarget/plugins/ve/CMakeLists.txt
|
||||||
|
index 16ce0891ca23..db30ee9c769f 100644
|
||||||
|
--- a/libomptarget/plugins/ve/CMakeLists.txt
|
||||||
|
+++ b/libomptarget/plugins/ve/CMakeLists.txt
|
||||||
|
@@ -32,7 +32,7 @@ if(${LIBOMPTARGET_DEP_VEO_FOUND})
|
||||||
|
|
||||||
|
# Install plugin under the lib destination folder.
|
||||||
|
install(TARGETS "omptarget.rtl.${tmachine_libname}"
|
||||||
|
- LIBRARY DESTINATION lib${OPENMP_LIBDIR_SUFFIX})
|
||||||
|
+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}${OPENMP_LIBDIR_SUFFIX})
|
||||||
|
|
||||||
|
target_link_libraries(
|
||||||
|
"omptarget.rtl.${tmachine_libname}"
|
||||||
|
diff --git a/runtime/src/CMakeLists.txt b/runtime/src/CMakeLists.txt
|
||||||
|
index e4f4e6e1e73f..1164b3b22b0e 100644
|
||||||
|
--- a/runtime/src/CMakeLists.txt
|
||||||
|
+++ b/runtime/src/CMakeLists.txt
|
||||||
|
@@ -346,13 +346,13 @@ add_dependencies(libomp-micro-tests libomp-test-deps)
|
||||||
|
# We want to install libomp in DESTDIR/CMAKE_INSTALL_PREFIX/lib
|
||||||
|
# We want to install headers in DESTDIR/CMAKE_INSTALL_PREFIX/include
|
||||||
|
if(${OPENMP_STANDALONE_BUILD})
|
||||||
|
- set(LIBOMP_HEADERS_INSTALL_PATH include)
|
||||||
|
+ set(LIBOMP_HEADERS_INSTALL_PATH "${CMAKE_INSTALL_INCLUDEDIR}")
|
||||||
|
else()
|
||||||
|
string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION ${PACKAGE_VERSION})
|
||||||
|
set(LIBOMP_HEADERS_INSTALL_PATH "${OPENMP_INSTALL_LIBDIR}/clang/${CLANG_VERSION}/include")
|
||||||
|
endif()
|
||||||
|
if(WIN32)
|
||||||
|
- install(TARGETS omp RUNTIME DESTINATION bin)
|
||||||
|
+ install(TARGETS omp RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
||||||
|
install(TARGETS ${LIBOMP_IMP_LIB_TARGET} ARCHIVE DESTINATION "${OPENMP_INSTALL_LIBDIR}")
|
||||||
|
# Create aliases (regular copies) of the library for backwards compatibility
|
||||||
|
set(LIBOMP_ALIASES "libiomp5md")
|
||||||
|
diff --git a/tools/multiplex/CMakeLists.txt b/tools/multiplex/CMakeLists.txt
|
||||||
|
index 64317c112176..4002784da736 100644
|
||||||
|
--- a/tools/multiplex/CMakeLists.txt
|
||||||
|
+++ b/tools/multiplex/CMakeLists.txt
|
||||||
|
@@ -4,7 +4,7 @@ if(LIBOMP_OMPT_SUPPORT)
|
||||||
|
add_library(ompt-multiplex INTERFACE)
|
||||||
|
target_include_directories(ompt-multiplex INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
|
||||||
|
|
||||||
|
- install(FILES ompt-multiplex.h DESTINATION include)
|
||||||
|
+ install(FILES ompt-multiplex.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
||||||
|
|
||||||
|
add_subdirectory(tests)
|
||||||
|
endif()
|
@ -25,9 +25,9 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./gnu-install-dirs.patch
|
./gnu-install-dirs.patch
|
||||||
# On Darwin the llvm-config is perhaps not working fine as the
|
# On Darwin the llvm-config is perhaps not working fine as the
|
||||||
# LLVM_MAIN_SRC_DIR is not getting set correctly, and the build fails as
|
# LLVM_MAIN_SRC_DIR is not getting set correctly, and the build fails as
|
||||||
# the include path is not correct.
|
# the include path is not correct.
|
||||||
./fix-root-src-dir.patch
|
./fix-root-src-dir.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ let
|
|||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
pname = "purescript";
|
pname = "purescript";
|
||||||
version = "0.14.6";
|
version = "0.14.7";
|
||||||
|
|
||||||
# These hashes can be updated automatically by running the ./update.sh script.
|
# These hashes can be updated automatically by running the ./update.sh script.
|
||||||
src =
|
src =
|
||||||
@ -26,12 +26,12 @@ in stdenv.mkDerivation rec {
|
|||||||
then
|
then
|
||||||
fetchurl {
|
fetchurl {
|
||||||
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/macos.tar.gz";
|
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/macos.tar.gz";
|
||||||
sha256 = "0yfl4galaqzbbkql2vfsg4zrc5cv037286764kv8qibdk2yrhap3";
|
sha256 = "0pc07xv5h7jgiy04rcrnsjb97nk5zs7jrvcsqggn0izlnrcyi8rc";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
fetchurl {
|
fetchurl {
|
||||||
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/linux64.tar.gz";
|
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/linux64.tar.gz";
|
||||||
sha256 = "01mf850a9jhqba6a3hsbl9fjxp2khplwnlr15wzp637s5vf7rd79";
|
sha256 = "0vcjxb1v76wg4hmisnw0pp6wl0pwp4fa19cw08zdhgy62w06mqfa";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,6 +14,12 @@ stdenv.mkDerivation rec {
|
|||||||
# tests load the library dynamically which for unknown reason failed
|
# tests load the library dynamically which for unknown reason failed
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
# remove when https://github.com/github/cmark-gfm/pull/248 merged and released
|
||||||
|
postInstall = ''
|
||||||
|
substituteInPlace $out/include/cmark-gfm-core-extensions.h \
|
||||||
|
--replace '#include "config.h"' '#include <stdbool.h>'
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "GitHub's fork of cmark, a CommonMark parsing and rendering library and program in C";
|
description = "GitHub's fork of cmark, a CommonMark parsing and rendering library and program in C";
|
||||||
homepage = "https://github.com/github/cmark-gfm";
|
homepage = "https://github.com/github/cmark-gfm";
|
||||||
|
@ -17,8 +17,8 @@ stdenv.mkDerivation {
|
|||||||
--replace "-linkpkg" "-thread -linkpkg"
|
--replace "-linkpkg" "-thread -linkpkg"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook which ];
|
nativeBuildInputs = [ autoreconfHook which ocaml findlib ];
|
||||||
buildInputs = [ ocaml bap findlib ctypes ];
|
buildInputs = [ bap ctypes ];
|
||||||
|
|
||||||
preInstall = ''
|
preInstall = ''
|
||||||
mkdir -p $out/lib
|
mkdir -p $out/lib
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "htslib";
|
pname = "htslib";
|
||||||
version = "1.14";
|
version = "1.15";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/samtools/htslib/releases/download/${version}/${pname}-${version}.tar.bz2";
|
url = "https://github.com/samtools/htslib/releases/download/${version}/${pname}-${version}.tar.bz2";
|
||||||
sha256 = "sha256-7SIbj1L0gS+BDuvgzFbNg1WlydIcYtFCrAWtDaFHk18=";
|
sha256 = "sha256-Gp9JkRUDoi9WgXzILqm4f7fnRntf+YnKWqYcEufVMtk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# perl is only used during the check phase.
|
# perl is only used during the check phase.
|
||||||
|
@ -10,9 +10,12 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "14ymjahqdxj26da8wik9d5dzlxn81b3z1iggdl7rn2nn06jy7lvy";
|
sha256 = "14ymjahqdxj26da8wik9d5dzlxn81b3z1iggdl7rn2nn06jy7lvy";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ perl gmp mpfr ppl ocaml findlib camlidl ];
|
nativeBuildInputs = [ ocaml findlib perl ];
|
||||||
|
buildInputs = [ gmp mpfr ppl camlidl ];
|
||||||
propagatedBuildInputs = [ mlgmpidl ];
|
propagatedBuildInputs = [ mlgmpidl ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
outputs = [ "out" "bin" "dev" ];
|
outputs = [ "out" "bin" "dev" ];
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
|
@ -22,7 +22,10 @@ stdenv.mkDerivation {
|
|||||||
inherit (param) sha256;
|
inherit (param) sha256;
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib ocamlbuild topkg ];
|
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
|
||||||
|
buildInputs = [ topkg ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
inherit (topkg) buildPhase installPhase;
|
inherit (topkg) buildPhase installPhase;
|
||||||
|
|
||||||
|
@ -13,9 +13,11 @@ buildDunePackage rec {
|
|||||||
sha256 = "17jm79np69ixp53a4njxnlb1pg8sd1g47nm3nyki9clkc8d4qsyv";
|
sha256 = "17jm79np69ixp53a4njxnlb1pg8sd1g47nm3nyki9clkc8d4qsyv";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ which menhir ];
|
nativeBuildInputs = [ which menhir ];
|
||||||
propagatedBuildInputs = [ easy-format re ];
|
propagatedBuildInputs = [ easy-format re ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
passthru.tests = {
|
passthru.tests = {
|
||||||
|
@ -36,10 +36,9 @@ stdenv.mkDerivation rec {
|
|||||||
export CAML_LD_LIBRARY_PATH="''${CAML_LD_LIBRARY_PATH-}''${CAML_LD_LIBRARY_PATH:+:}''$1/lib/ocaml/${ocaml.version}/site-lib/ocaml${ocaml.version}-bap-${version}-llvm-plugins/"
|
export CAML_LD_LIBRARY_PATH="''${CAML_LD_LIBRARY_PATH-}''${CAML_LD_LIBRARY_PATH:+:}''$1/lib/ocaml/${ocaml.version}/site-lib/ocaml${ocaml.version}-bap-${version}-llvm-plugins/"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ which makeWrapper ];
|
nativeBuildInputs = [ which makeWrapper ocaml findlib ocamlbuild ocaml_oasis ];
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib ocamlbuild ocaml_oasis
|
buildInputs = [ linenoise
|
||||||
linenoise
|
|
||||||
ounit
|
ounit
|
||||||
ppx_bitstring
|
ppx_bitstring
|
||||||
z3
|
z3
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, ocaml, findlib, ocamlbuild, qtest, num
|
{ stdenv, lib, fetchFromGitHub, ocaml, findlib, ocamlbuild, qtest, num, ounit
|
||||||
, doCheck ? lib.versionAtLeast ocaml.version "4.08" && !stdenv.isAarch64
|
, doCheck ? lib.versionAtLeast ocaml.version "4.08" && !stdenv.isAarch64
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -17,10 +17,12 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "sha256:1cd7475n1mxhq482aidmhh27mq5p2vmb8d9fkb1mlza9pz5z66yq";
|
sha256 = "sha256:1cd7475n1mxhq482aidmhh27mq5p2vmb8d9fkb1mlza9pz5z66yq";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib ocamlbuild ];
|
nativeBuildInputs = [ ocaml findlib ocamlbuild ];
|
||||||
checkInputs = [ qtest ];
|
checkInputs = [ qtest ounit ];
|
||||||
propagatedBuildInputs = [ num ];
|
propagatedBuildInputs = [ num ];
|
||||||
|
|
||||||
|
strictDeps = !doCheck;
|
||||||
|
|
||||||
inherit doCheck;
|
inherit doCheck;
|
||||||
checkTarget = "test";
|
checkTarget = "test";
|
||||||
|
|
||||||
|
@ -9,7 +9,10 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "16wi8ld7c3mq77ylpgbnj8qqqqimyzwxs47v06vyrwpma5pab5xa";
|
sha256 = "16wi8ld7c3mq77ylpgbnj8qqqqimyzwxs47v06vyrwpma5pab5xa";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib ocamlbuild ocaml_pcre ];
|
nativeBuildInputs = [ ocaml findlib ocamlbuild ];
|
||||||
|
buildInputs = [ ocaml_pcre ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
@ -14,9 +14,12 @@ buildDunePackage rec {
|
|||||||
minimumOCamlVersion = "4.07";
|
minimumOCamlVersion = "4.07";
|
||||||
useDune2 = true;
|
useDune2 = true;
|
||||||
|
|
||||||
|
strictDeps = !doCheck;
|
||||||
|
|
||||||
propagatedBuildInputs = [ bigarray-compat ];
|
propagatedBuildInputs = [ bigarray-compat ];
|
||||||
|
|
||||||
checkInputs = [ alcotest astring fpath bos findlib pkg-config ];
|
nativeBuildInputs = [ findlib pkg-config ];
|
||||||
|
checkInputs = [ alcotest astring fpath bos ];
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, fetchFromGitHub, buildDunePackage, ocaml, alcotest, bigarray-compat }:
|
{ lib, fetchFromGitHub, buildDunePackage, ocaml, alcotest, bigarray-compat, pkg-config }:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "bigstringaf";
|
pname = "bigstringaf";
|
||||||
@ -15,6 +15,10 @@ buildDunePackage rec {
|
|||||||
sha256 = "1q1sqxzdnlrpl95ccrhl7lwy3zswgd9rbn19ildclh0lyi2vazbj";
|
sha256 = "1q1sqxzdnlrpl95ccrhl7lwy3zswgd9rbn19ildclh0lyi2vazbj";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# This currently fails with dune
|
||||||
|
strictDeps = false;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
checkInputs = [ alcotest ];
|
checkInputs = [ alcotest ];
|
||||||
propagatedBuildInputs = [ bigarray-compat ];
|
propagatedBuildInputs = [ bigarray-compat ];
|
||||||
doCheck = lib.versionAtLeast ocaml.version "4.05";
|
doCheck = lib.versionAtLeast ocaml.version "4.05";
|
||||||
|
@ -16,7 +16,10 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "14j3hrhbjqxbizr1pr8fcig9dmfzhbjjwzwyc99fcsdic67w8izb";
|
sha256 = "14j3hrhbjqxbizr1pr8fcig9dmfzhbjjwzwyc99fcsdic67w8izb";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib easy-format ];
|
nativeBuildInputs = [ ocaml findlib ];
|
||||||
|
buildInputs = [ easy-format ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
@ -15,6 +15,8 @@ buildDunePackage rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = [ easy-format ];
|
propagatedBuildInputs = [ easy-format ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs .
|
patchShebangs .
|
||||||
'';
|
'';
|
||||||
|
@ -15,7 +15,9 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "sha256-sZwq6c10hBBS9tGvKlWD9GE3JBrZPByfDrXE6xIPcG4=";
|
sha256 = "sha256-sZwq6c10hBBS9tGvKlWD9GE3JBrZPByfDrXE6xIPcG4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ autoreconfHook which ocaml findlib ];
|
nativeBuildInputs = [ autoreconfHook which ocaml findlib ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
@ -18,7 +18,9 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1c807wrpxra9sbb34lajhimwra28ldxv04m570567lh2b04n38zy";
|
sha256 = "1c807wrpxra9sbb34lajhimwra28ldxv04m570567lh2b04n38zy";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib ocamlbuild which camlp4 ];
|
nativeBuildInputs = [ ocaml findlib ocamlbuild which camlp4 ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
|
@ -11,10 +11,12 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1s10iqx8rgnxr5n93lf4blwirjf8nlm272yg5sipr7lsr35v49wc";
|
sha256 = "1s10iqx8rgnxr5n93lf4blwirjf8nlm272yg5sipr7lsr35v49wc";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ ocaml findlib ocamlbuild ];
|
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
|
||||||
buildInputs = [ findlib topkg ];
|
buildInputs = [ topkg ];
|
||||||
propagatedBuildInputs = [ astring fmt fpath logs rresult ];
|
propagatedBuildInputs = [ astring fmt fpath logs rresult ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
inherit (topkg) buildPhase installPhase;
|
inherit (topkg) buildPhase installPhase;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -19,9 +19,6 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
autoreconfHook
|
autoreconfHook
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
ocaml
|
ocaml
|
||||||
findlib
|
findlib
|
||||||
];
|
];
|
||||||
@ -30,6 +27,8 @@ stdenv.mkDerivation rec {
|
|||||||
bzip2
|
bzip2
|
||||||
];
|
];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
preInstall = "mkdir -p $OCAMLFIND_DESTDIR/stublibs";
|
preInstall = "mkdir -p $OCAMLFIND_DESTDIR/stublibs";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -9,7 +9,9 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "04pvhwb664g3s644c7v7419a3kvf5s3pynkhmk5j59dvlfm1yf0f";
|
sha256 = "04pvhwb664g3s644c7v7419a3kvf5s3pynkhmk5j59dvlfm1yf0f";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib ];
|
nativeBuildInputs = [ ocaml findlib ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
@ -17,7 +17,10 @@ buildDunePackage rec {
|
|||||||
sha256 = "1m2c76ghisg73dikz2ifdkrbkgiwa0hcmp21f2fm2rkbf02rq3f4";
|
sha256 = "1m2c76ghisg73dikz2ifdkrbkgiwa0hcmp21f2fm2rkbf02rq3f4";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ dune-configurator cppo graphics lablgtk stdio ];
|
strictDeps = true;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cppo ];
|
||||||
|
buildInputs = [ dune-configurator graphics lablgtk stdio ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
branch = "5.0";
|
branch = "5.0";
|
||||||
|
@ -15,7 +15,9 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "sha256:1qmsa0xgi960y7r20mvf8hxiiml7l1908s4dm7nq262f19w51gsl";
|
sha256 = "sha256:1qmsa0xgi960y7r20mvf8hxiiml7l1908s4dm7nq262f19w51gsl";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ which ocaml findlib ];
|
nativeBuildInputs = [ which ocaml findlib ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
preInstall = ''
|
preInstall = ''
|
||||||
mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs
|
mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs
|
||||||
|
@ -33,10 +33,12 @@ stdenv.mkDerivation {
|
|||||||
inherit (param) sha256;
|
inherit (param) sha256;
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib ];
|
nativeBuildInputs = [ ocaml findlib ];
|
||||||
|
|
||||||
propagatedBuildInputs = [zlib];
|
propagatedBuildInputs = [zlib];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
inherit (param) patches;
|
inherit (param) patches;
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
createFindlibDestdir = true;
|
||||||
|
@ -13,7 +13,9 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0x43pjxx70kgip86mmdn08s97k4qzdqc8i79xfyyx28smy1bsa00";
|
sha256 = "0x43pjxx70kgip86mmdn08s97k4qzdqc8i79xfyyx28smy1bsa00";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ocaml findlib camlp4];
|
nativeBuildInputs = [ ocaml findlib camlp4 ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
@ -14,7 +14,9 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "167279lia6qx62mdcyc5rjsi4gf4yi52wn9mhgd9y1v3754z7fwb";
|
sha256 = "167279lia6qx62mdcyc5rjsi4gf4yi52wn9mhgd9y1v3754z7fwb";
|
||||||
})];
|
})];
|
||||||
|
|
||||||
buildInputs = [ocaml findlib camlp4];
|
nativeBuildInputs = [ocaml findlib camlp4 ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
@ -13,7 +13,9 @@ buildDunePackage rec {
|
|||||||
sha256 = "00i910qjv6bpk0nkafp5fg97isqas0bwjf7m6rz11rsxilpalzad";
|
sha256 = "00i910qjv6bpk0nkafp5fg97isqas0bwjf7m6rz11rsxilpalzad";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cppo ];
|
nativeBuildInputs = [ cppo ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
runHook preConfigure
|
runHook preConfigure
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user