diff options
| author | Mark H Weaver <mhw@netris.org> | 2019-09-06 20:46:00 -0400 | 
|---|---|---|
| committer | Mark H Weaver <mhw@netris.org> | 2019-09-06 20:46:00 -0400 | 
| commit | 65542a8852759f35e19959149ac92297c8b54be5 (patch) | |
| tree | bc8f398c7b10a4725b20aa59ab1452d30f358ea3 /gnu/packages/engineering.scm | |
| parent | bc60349b5bc58a0b803df5adce1de6db82453744 (diff) | |
| parent | f66aee3d0d2f573187ed5d44ae7c13d73cd4097a (diff) | |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/engineering.scm')
| -rw-r--r-- | gnu/packages/engineering.scm | 40 | 
1 files changed, 38 insertions, 2 deletions
| diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index a1f222bed4..7f5409c835 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -12,6 +12,7 @@  ;;; Copyright © 2018, 2019 Arun Isaac <arunisaac@systemreboot.net>  ;;; Copyright © 2019 Tim Stahel <swedneck@swedneck.xyz>  ;;; Copyright © 2019 Jovany Leandro G.C <bit4bit@riseup.net> +;;; Copyright © 2019 Steve Sprang <scs@stevesprang.com>  ;;;  ;;; This file is part of GNU Guix.  ;;; @@ -1940,7 +1941,7 @@ simulator backends @code{Qucsator}, @code{ngspice} and @code{Xyce}.")  (define-public librepcb    (package      (name "librepcb") -    (version "0.1.1") +    (version "0.1.2")      (source       (origin         (method url-fetch) @@ -1948,7 +1949,7 @@ simulator backends @code{Qucsator}, @code{ngspice} and @code{Xyce}.")                             version "/librepcb-" version "-source.zip"))         (sha256          (base32 -         "08lm95kr5gqyqyy4hcii0micqa6ryhbv0harvdndmpvi4ix1ggi8")))) +         "1xgk0r3nxdd2cy7d1k165d005gsngnz1v2wbwivacw7gis0i8ip7"))))      (build-system gnu-build-system)      (inputs       `(("qtbase" ,qtbase) @@ -2109,3 +2110,38 @@ while keeping the user experience at mind.  Cutter is created by reverse  engineers for reverse engineers.")      (license (list license:cc-by-sa3.0  ;the "Iconic" icon set                     license:gpl3+))))    ;everything else + +(define-public lib3mf +  (package +    (name "lib3mf") +    (version "1.8.1") +    (source +     (origin +      (method git-fetch) +      (uri (git-reference (url "https://github.com/3MFConsortium/lib3mf.git") +                          (commit (string-append "v" version)))) +      (file-name (git-file-name name version)) +      (sha256 +       (base32 +        "11wpk6n9ga2p57h1dcrp37w77mii0r7r6mlrgmykf7rvii1rzgqd")))) +    (build-system cmake-build-system) +    (native-inputs +     `(("googletest-source" ,(package-source googletest)))) +    (inputs +     `(("libuuid" ,util-linux))) +    (arguments +     `(#:phases +       (modify-phases %standard-phases +         (add-after 'unpack 'unpack-googletest +           (lambda* (#:key inputs #:allow-other-keys) +             (copy-recursively (assoc-ref inputs "googletest-source") +                               "UnitTests/googletest") +             #t))))) +    (synopsis "Implementation of the 3D Manufacturing Format (3MF) file standard") +    (description +     "Lib3MF is a C++ implementation of the 3D Manufacturing Format (3MF) file +standard.  It offers a way to integrate 3MF reading and writing capabilities, as +well as conversion and validation tools for input and output data.  The +specification can be downloaded at @url{http://3mf.io/specification/}.") +    (home-page "https://3mf.io/") +    (license license:bsd-2))) | 
