mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 06:00:45 -06:00
remove old overlay
This commit is contained in:
parent
9969e5a1bb
commit
25945099f1
5 changed files with 1 additions and 41 deletions
|
@ -11,7 +11,6 @@ in {
|
||||||
options.languages.nim = mkEnableOption "nim";
|
options.languages.nim = mkEnableOption "nim";
|
||||||
config = mkIf cfg.nim {
|
config = mkIf cfg.nim {
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
(import ../../overlays/nim {})
|
|
||||||
(import ../../overlays/nimlsp {})
|
(import ../../overlays/nimlsp {})
|
||||||
(import ../../overlays/nimble {})
|
(import ../../overlays/nimble {})
|
||||||
(import ../../overlays/nim-atlas {})
|
(import ../../overlays/nim-atlas {})
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
{...}: (final: prev: {
|
|
||||||
nim-unwrapped-2 = prev.nim-unwrapped-2.overrideAttrs {
|
|
||||||
patches =
|
|
||||||
(prev.patches or [])
|
|
||||||
++ [
|
|
||||||
./install.patch
|
|
||||||
];
|
|
||||||
# installPhase = ''
|
|
||||||
# runHook preInstall
|
|
||||||
# install -Dt $out/bin bin/*
|
|
||||||
# ln -sf $out/nim/bin/nim $out/bin/nim
|
|
||||||
# ln -sf $out/nim/lib $out/lib
|
|
||||||
# ./install.sh $out
|
|
||||||
# cp -a dist tools $out/nim/
|
|
||||||
# runHook postInstall
|
|
||||||
# '';
|
|
||||||
};
|
|
||||||
})
|
|
|
@ -1,10 +0,0 @@
|
||||||
diff --git a/install.sh b/install.sh
|
|
||||||
@@ -1113,6 +1113,8 @@
|
|
||||||
chmod 644 "$nimbleDir/doc/advopt.txt"
|
|
||||||
cp "doc/nimdoc.css" "$nimbleDir/doc/nimdoc.css"
|
|
||||||
chmod 644 "$nimbleDir/doc/nimdoc.css"
|
|
||||||
+ cp "doc/nimdoc.cls" "$nimbleDir/doc/nimdoc.cls"
|
|
||||||
+ chmod 644 "$nimbleDir/doc/nimdoc.cls"
|
|
||||||
cp "nim.nimble" "$nimbleDir/nim.nimble"
|
|
||||||
chmod 644 "$nimbleDir/nim.nimble"
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
nimble = prev.nimble.overrideNimAttrs {
|
nimble = prev.nimble.overrideNimAttrs {
|
||||||
version = "0.14.2-f74bf2";
|
version = "0.14.2-f74bf2";
|
||||||
requiredNimVersion = 2;
|
requiredNimVersion = 2;
|
||||||
buildInputs = [prev.pkgs.openssl];
|
buildInputs = [ prev.pkgs.openssl ];
|
||||||
|
|
||||||
src = prev.fetchFromGitHub {
|
src = prev.fetchFromGitHub {
|
||||||
owner = "nim-lang";
|
owner = "nim-lang";
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
{...}: (final: prev: {
|
|
||||||
wezterm = prev.wezterm.overrideAttrs {
|
|
||||||
src = prev.fetchFromGitHub {
|
|
||||||
version = "main-20240121";
|
|
||||||
owner = "wez";
|
|
||||||
repo = "wezterm";
|
|
||||||
rev = "b0671294d1c9225096909e12875ada25dd19a35e";
|
|
||||||
hash = "sha256-oIt4bUVXRR7qnBPizcPA7fTiZl4xz9QaSdzLNukjtkw=";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
})
|
|
Loading…
Reference in a new issue