mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 10:53:52 +00:00
swift: add canary to verify no compiler dependency
This commit is contained in:
parent
72ba293675
commit
a567024b44
@ -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…
Reference in New Issue
Block a user