mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 01:24:09 +01:00
this creates some eval errors that will be fixed in the next commit
done with the following script:
```fish
\#!/usr/bin/env fish
set packagesjson (nix eval --impure --json --expr '
let
lib = import ./lib;
in
import pkgs/servers/x11/xorg/default.nix (lib.mapAttrs (
name: _:
if name == "lib" then
lib
else if name == "config" then
{ allowAliases = false; }
else
name
) (__functionArgs (import pkgs/servers/x11/xorg/default.nix))) { }
' | jq)
set one (grep '^ [A-Za-z0-9_-]*$' pkgs/servers/x11/xorg/default.nix | string trim | string replace -r '$' Z | sort | string sub -e -1)
set two (grep '^ [A-Za-z0-9_-]* = [A-Za-z0-9_-]*;$' pkgs/servers/x11/xorg/default.nix | cut -d= -f1 | string trim | string replace -r '$' Z | sort | string sub -e -1)
for arg in $one $two
set oname $arg
set nname (echo $packagesjson | jq -r .$oname)
if test $nname = null
echo (set_color red)warn:(set_color normal) unknown package xorg.$oname >&2
continue
end
echo $oname "->" $nname
# replace basic xorg.$name references
for file in (rg -F "xorg.$oname" --files-with-matches pkgs)
# special cases
sd -F "$oname = xorg.$oname;" "$nname = $nname;" $file
# replace
sd -F "xorg.$oname" "$nname" $file
# fixup function arguments
# prevent duplicate function args
if grep -E " ($oname|$nname),\$" $file >/dev/null
continue
end
if grep 'xorg\..' $file >/dev/null # case1: there is more so we can't just remove the function arg
if grep ' xorg,$' $file >/dev/null
sd ' xorg,$' " xorg,
$nname," $file
else if grep ' xorg ? .*,$' $file >/dev/null
sd 'xorg( ? .*),$' "xorg\$1,
$nname," $file
else
sd -F 'xorg,' "$nname,
xorg," $file
end
else # case there is no more xorg..* so we can just replace the function arg
sd 'xorg(| ? .*),.*$' "$nname," $file
end
end
end
nix fmt
```
131 lines
2.2 KiB
Nix
131 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
getdns,
|
|
htslib,
|
|
libsass,
|
|
openssl,
|
|
pkg-config,
|
|
raylib,
|
|
SDL2,
|
|
tkrzw,
|
|
libxinerama,
|
|
libxft,
|
|
libx11,
|
|
}:
|
|
|
|
# The following is list of overrides that take two arguments each:
|
|
# - lockAttrs: - an attrset from a Nim lockfile, use this for making constraints on the locked library
|
|
# - prevAttrs: - preceding arguments to the depender package
|
|
{
|
|
jester =
|
|
lockAttrs:
|
|
{
|
|
buildInputs ? [ ],
|
|
...
|
|
}:
|
|
{
|
|
buildInputs = buildInputs ++ [ openssl ];
|
|
};
|
|
|
|
hts =
|
|
lockAttrs:
|
|
{
|
|
buildInputs ? [ ],
|
|
...
|
|
}:
|
|
{
|
|
buildInputs = buildInputs ++ [ htslib ];
|
|
};
|
|
|
|
getdns =
|
|
lockAttrs:
|
|
{
|
|
nativeBuildInputs ? [ ],
|
|
buildInputs ? [ ],
|
|
...
|
|
}:
|
|
{
|
|
nativeBuildInputs = nativeBuildInputs ++ [ pkg-config ];
|
|
buildInputs = buildInputs ++ [ getdns ];
|
|
};
|
|
|
|
hashlib =
|
|
lockAttrs:
|
|
lib.trivial.warnIf (lockAttrs.rev == "84e0247555e4488594975900401baaf5bbbfb531")
|
|
"the selected version of the hashlib Nim library is hardware specific"
|
|
# https://github.com/khchen/hashlib/pull/4
|
|
# remove when fixed upstream
|
|
(_: { });
|
|
|
|
nimraylib_now =
|
|
lockAttrs:
|
|
{
|
|
buildInputs ? [ ],
|
|
...
|
|
}:
|
|
{
|
|
buildInputs = buildInputs ++ [ raylib ];
|
|
};
|
|
|
|
sass =
|
|
lockAttrs:
|
|
{
|
|
buildInputs ? [ ],
|
|
...
|
|
}:
|
|
{
|
|
buildInputs = buildInputs ++ [ libsass ];
|
|
};
|
|
|
|
sdl2 =
|
|
lockAttrs:
|
|
{
|
|
buildInputs ? [ ],
|
|
...
|
|
}:
|
|
{
|
|
buildInputs = buildInputs ++ [ SDL2 ];
|
|
};
|
|
|
|
tkrzw =
|
|
lockAttrs:
|
|
{
|
|
nativeBuildInputs ? [ ],
|
|
buildInputs ? [ ],
|
|
...
|
|
}:
|
|
{
|
|
nativeBuildInputs = nativeBuildInputs ++ [ pkg-config ];
|
|
buildInputs = buildInputs ++ [ tkrzw ];
|
|
};
|
|
|
|
x11 =
|
|
lockAttrs:
|
|
{
|
|
buildInputs ? [ ],
|
|
...
|
|
}:
|
|
{
|
|
buildInputs = buildInputs ++ [
|
|
libx11
|
|
libxft
|
|
libxinerama
|
|
];
|
|
};
|
|
|
|
zippy =
|
|
lockAttrs:
|
|
{
|
|
nimFlags ? [ ],
|
|
...
|
|
}:
|
|
{
|
|
nimFlags =
|
|
nimFlags
|
|
++ lib.optionals stdenv.hostPlatform.isx86_64 [
|
|
"--passC:-msse4.1"
|
|
"--passC:-mpclmul"
|
|
];
|
|
};
|
|
}
|