mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
swift: add canary to verify no compiler dependency
This commit is contained in:
parent
72ba293675
commit
a567024b44
2 changed files with 8 additions and 0 deletions
|
@ -58,6 +58,10 @@ stdenv.mkDerivation {
|
|||
cp $binPath/sourcekit-lsp $out/bin/
|
||||
'';
|
||||
|
||||
# Canary to verify output of our Swift toolchain does not depend on the Swift
|
||||
# compiler itself. (Only its 'lib' output.)
|
||||
disallowedRequisites = [ swift.swift ];
|
||||
|
||||
meta = {
|
||||
description = "Language Server Protocol implementation for Swift and C-based languages";
|
||||
homepage = "https://github.com/apple/sourcekit-lsp";
|
||||
|
|
|
@ -39,6 +39,10 @@ stdenv.mkDerivation {
|
|||
ln -s $renderArtifact/dist $out/share/docc/render
|
||||
'';
|
||||
|
||||
# Canary to verify output of our Swift toolchain does not depend on the Swift
|
||||
# compiler itself. (Only its 'lib' output.)
|
||||
disallowedRequisites = [ swift.swift ];
|
||||
|
||||
meta = {
|
||||
description = "Documentation compiler for Swift";
|
||||
homepage = "https://github.com/apple/swift-docc";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue