nonguix/nongnu/packages/dotnet.scm
Jonathan Brielmaier 62a5df4222
*.scm: Use SPDX license identifiers.
Fixes https://gitlab.com/nonguix/nonguix/-/issues/224

* *.scm: Use SPDX license identifier and remove obsolete license
statement.
2022-12-19 17:17:39 +01:00

288 lines
12 KiB
Scheme

;;; SPDX-License-Identifier: GPL-3.0-or-later
;;; Copyright © 2021 Jelle Licht <jlicht@fsfe.org>
(define-module (nongnu packages dotnet)
#:use-module (ice-9 match)
#:use-module (guix download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (nonguix build-system binary)
#:use-module (gnu packages base)
#:use-module (gnu packages compression)
#:use-module (gnu packages gcc)
#:use-module (gnu packages icu4c)
#:use-module (gnu packages kerberos)
#:use-module (gnu packages instrumentation)
#:use-module (gnu packages tls))
(define-public omnisharp
(package
(name "omnisharp")
(version "1.37.7")
(source
(origin
(method url-fetch/tarbomb)
(uri
(string-append "https://github.com/OmniSharp/omnisharp-roslyn/releases/download/v"
version "/omnisharp-linux-x64.tar.gz"))
(sha256
(base32
"0x1ynqrfipbqwf182fx27f9xw4khg65nsvpy9vx35jarfshyrqac"))))
(build-system binary-build-system)
(arguments
`(#:patchelf-plan
`(("bin/mono"
("gcc:lib" "zlib"))
("lib/libmono-native.so"
("mit-krb5")))
#:install-plan
`(("run" "bin/omnisharp-wrapper")
("bin" "share/omnisharp/")
("etc" "share/omnisharp/")
("lib" "share/omnisharp/")
("omnisharp" "share/omnisharp/"))
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'fix-wrapper
(lambda* (#:key outputs #:allow-other-keys)
(substitute* "run"
(("base_dir=.*")
(string-append "base_dir="
(assoc-ref outputs "out") "/share/omnisharp\n"))
(("chmod.*") ""))))
(add-before 'patchelf 'patchelf-writable
(lambda _
(for-each make-file-writable
'("bin/mono" "lib/libmono-native.so")))))))
(inputs
`(("gcc:lib" ,gcc "lib")
("mit-krb5" ,mit-krb5)
("zlib" ,zlib)))
(home-page "https://github.com/OmniSharp/omnisharp-roslyn")
(supported-systems '("x86_64-linux"))
(synopsis "Implementation of Language Server Protocol based on Roslyn workspaces")
(description "OmniSharp is a @code{.NET} development platform based on
Roslyn workspaces. It provides project dependencies and C# language services to
various IDEs and plugins.")
(license license:expat)))
(define-public dotnet
(let ((dotnet-sdk-version "6.0.9"))
(package
(name "dotnet")
(version "6.0.401")
(source
(origin
(method url-fetch/tarbomb)
(uri
(string-append "https://download.visualstudio.microsoft.com/download/pr/8159607a-e686-4ead-ac99-b4c97290a5fd/ec6070b1b2cc0651ebe57cf1bd411315/dotnet-sdk-"
version
"-linux-x64.tar.gz"))
(sha256
(base32
"05yr64ffcaf48ripxzcv9nwlzp7r83cy9hz17dm5c0317lhksqch"))))
(build-system binary-build-system)
(arguments
`(#:patchelf-plan
`(("dotnet"
("gcc:lib" "zlib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version
"/libSystem.Net.Security.Native.so")
("mit-krb5"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version
"/libSystem.Security.Cryptography.Native.OpenSsl.so")
("openssl"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version
"/libSystem.IO.Compression.Native.so")
("zlib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version
"/libcoreclrtraceptprovider.so")
("gcc:lib" "lttng-ust"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/createdump")
("gcc:lib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/libclrjit.so")
("gcc:lib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/libcoreclr.so")
("gcc:lib" "icu4c"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/libdbgshim.so")
("gcc:lib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/libhostpolicy.so")
("gcc:lib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/libmscordaccore.so")
("gcc:lib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/libmscordbi.so")
("gcc:lib"))
(,,(string-append "packs/Microsoft.NETCore.App.Host.linux-x64/"
dotnet-sdk-version
"/runtimes/linux-x64/native/singlefilehost")
("gcc:lib" "openssl" "mit-krb5" "zlib" "icu4c"))
(,,(string-append "packs/Microsoft.NETCore.App.Host.linux-x64/"
dotnet-sdk-version
"/runtimes/linux-x64/native/apphost")
("gcc:lib"))
(,,(string-append "packs/Microsoft.NETCore.App.Host.linux-x64/"
dotnet-sdk-version
"/runtimes/linux-x64/native/libnethost.so")
("gcc:lib"))
(,,(string-append "sdk/" version "/AppHostTemplate/apphost")
("gcc:lib"))
(,,(string-append "host/fxr/" dotnet-sdk-version "/libhostfxr.so")
("gcc:lib")))
#:install-plan
`(("." "share/dotnet/"))
#:phases
(modify-phases %standard-phases
(add-before 'patchelf 'patchelf-writable
(lambda _
(for-each make-file-writable (find-files "."))))
(add-after 'install 'install-wrapper
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(bin-dir (string-append out "/bin"))
(dotnet-target (string-append out "/share/dotnet/dotnet"))
(dotnet-dest (string-append bin-dir "/dotnet")))
(mkdir-p bin-dir)
(symlink dotnet-target dotnet-dest)
;; First symlink, then wrap-program: dotnet cannot run when renamed
(wrap-program dotnet-dest
;; Ensure the `dotnet' program does not phone home to share telemetry
`("DOTNET_CLI_TELEMETRY_OPTOUT" = ("1")))))))))
(native-search-paths
(list (search-path-specification
(variable "DOTNET_ROOT")
(separator #f)
(files '("share/dotnet")))))
(inputs
`(("gcc:lib" ,gcc "lib")
("icu4c" ,icu4c)
("lttng-ust" ,lttng-ust)
("mit-krb5" ,mit-krb5)
("openssl" ,openssl)
("zlib" ,zlib)))
(home-page "https://docs.microsoft.com/en-us/dotnet/")
(supported-systems '("x86_64-linux"))
(synopsis "Binary build of the @code{.NET} SDK and runtime")
(description "@code{.NET} is a cross-platform developer platform for
building different types of applications.")
(license license:expat))))
(define-public dotnet-core-3.1
(let ((dotnet-sdk-version "3.1.25"))
(package
(name "dotnet")
(version "3.1.419")
(source
(origin
(method url-fetch/tarbomb)
(uri
(string-append "https://dotnetcli.azureedge.net/dotnet/Sdk/"
version "/dotnet-sdk-"
version "-linux-x64.tar.gz"))
(sha256
(base32
"0wg91y5czimcrcv4rfvza9qc1n7l29szbs9qnmr437175zl10ksi"))))
(build-system binary-build-system)
(arguments
`(#:patchelf-plan
`(("dotnet"
("glibc" "gcc:lib" "zlib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version
"/System.Net.Security.Native.so")
("mit-krb5"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version
"/System.Security.Cryptography.Native.OpenSsl.so")
("openssl"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version
"/System.IO.Compression.Native.so")
("zlib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version
"/libcoreclrtraceptprovider.so")
("gcc:lib" "lttng-ust"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/createdump")
("gcc:lib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/libclrjit.so")
("gcc:lib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/libcoreclr.so")
("gcc:lib" "icu4c"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/libdbgshim.so")
("gcc:lib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/libhostpolicy.so")
("gcc:lib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/libmscordaccore.so")
("gcc:lib"))
(,,(string-append "shared/Microsoft.NETCore.App/"
dotnet-sdk-version "/libmscordbi.so")
("gcc:lib"))
(,,(string-append "packs/Microsoft.NETCore.App.Host.linux-x64/"
dotnet-sdk-version
"/runtimes/linux-x64/native/apphost")
("gcc:lib"))
(,,(string-append "packs/Microsoft.NETCore.App.Host.linux-x64/"
dotnet-sdk-version
"/runtimes/linux-x64/native/libnethost.so")
("gcc:lib"))
(,,(string-append "sdk/" version "/AppHostTemplate/apphost")
("gcc:lib"))
(,,(string-append "host/fxr/" dotnet-sdk-version "/libhostfxr.so")
("gcc:lib")))
#:install-plan
`(("." "share/dotnet/"))
#:phases
(modify-phases %standard-phases
(add-before 'patchelf 'patchelf-writable
(lambda _
(for-each make-file-writable (find-files "."))))
(add-after 'install 'install-wrapper
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(bin-dir (string-append out "/bin"))
(dotnet-target (string-append out "/share/dotnet/dotnet"))
(dotnet-dest (string-append bin-dir "/dotnet")))
(mkdir-p bin-dir)
(symlink dotnet-target dotnet-dest)
;; First symlink, then wrap-program: dotnet cannot run when renamed
(wrap-program dotnet-dest
;; Ensure the `dotnet' program does not phone home to share telemetry and get
;; rid of a bunch of i18n warnings.
`("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT" = ("1"))
`("DOTNET_CLI_TELEMETRY_OPTOUT" = ("1")))))))))
(native-search-paths
(list (search-path-specification
(variable "DOTNET_ROOT")
(separator #f)
(files '("share/dotnet")))))
(inputs
`(("gcc:lib" ,gcc "lib")
("glibc", glibc)
("icu4c" ,icu4c)
("lttng-ust" ,lttng-ust)
("mit-krb5" ,mit-krb5)
("openssl" ,openssl)
("zlib" ,zlib)))
(home-page "https://dotnet.microsoft.com/en-us/")
(supported-systems '("x86_64-linux"))
(synopsis "Binary build of the @code{.NET} SDK and runtime")
(description "@code{.NET} is a cross-platform developer platform for
building different types of applications.")
(license license:expat))))