;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Jan Nieuwenhuizen ;;; Copyright © 2020 Pierre Neidhardt ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages mono) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages fontutils) #:use-module (gnu packages gettext) #:use-
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/services/pam-mount.scm')
0 files changed, 0 insertions, 0 deletions
'("mcs/tools/mono-shlib-cop/Makefile" "mcs/tools/mdoc/Makefile") (("^run-test-local:" all) (string-append "#" all))) (substitute* "mcs/tools/sqlmetal/Makefile" (("^include ../../build/rules.make" all) (string-append "NO_TEST:=true\n" all "\nrun-test-lib:\n\t@echo skipping test\n")))))) ;; these 4 tests fail #:make-flags `(,(string-append "PLATFORM_DISABLED_TESTS=" " appdomain-unload.exe" " delegate2.exe" " finally_guard.exe" " remoting4.exe")) ;; running tests in parallel fails #:parallel-tests? #f)) (synopsis "Compiler and libraries for the C# programming language") (description "Mono is a compiler, vm, debugger and set of libraries for C#, a C-style programming language from Microsoft that is very similar to Java.") (home-page "https://www.mono-project.com/") (license license:x11))) (define-public libgdiplus (package (name "libgdiplus") (version "6.0.5") (source (origin (method url-fetch) (uri (string-append "http://download.mono-project.com/sources/libgdiplus/libgdiplus-" version ".tar.gz")) (sha256 (base32 "1vr5l09i5i91n9qzky7ab9wwvgdidvrbw26y8llip0z4qdf4w7mq")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) (inputs `(("glib" ,glib) ("cairo" ,cairo) ("fontconfig" ,fontconfig) ("libtiff" ,libtiff) ("libjpeg" ,libjpeg-turbo) ("libexif" ,libexif) ("libungif" ,libungif))) (arguments `(#:phases (modify-phases %standard-phases ;; TODO: See with upstream why they fail. ;; https://github.com/mono/mono/issues/18934 (add-before 'configure 'remove-buggy-tests (lambda _ (substitute* "tests/Makefile.in" (("testicocodec\\$\\(EXEEXT\\) ") " ") (("testfont\\$\\(EXEEXT\\) ") " ")) #t))))) (home-page "https://www.mono-project.com/docs/gui/libgdiplus/") (synopsis "Mono library that provides a GDI+-compatible API") (description "Libgdiplus is the Mono library that provides a GDI+-compatible API on non-Windows operating systems. The implementation uses Cairo to do most of the heavy lifting.") (license license:gpl3+)))