guix: nuget importer: Add it.

* guix/import/nuget.scm: New file.
* guix/scripts/import/nuget.scm: New file.
* guix/scripts/import.scm: Add reference to it.
* gnu/packages/guile-xyz.scm (guile-semver): Update to 0.2.0.
[source]: Switch.

Change-Id: I159c5cf3b02b42435b03d989d5815d3fcf001c92
This commit is contained in:
Danny Milosavljevic 2025-06-15 22:29:33 +02:00
parent bbd63d1470
commit a6c8217ee7
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5
4 changed files with 545 additions and 9 deletions

View file

@ -5535,17 +5535,19 @@ Conversion between binary and hex-and-dash string UUIDs is also included.")
(define-public guile-semver
(package
(name "guile-semver")
(version "0.1.1")
(version "0.2.0")
(source (origin
(method url-fetch)
(uri (string-append "https://files.ngyro.com/guile-semver/"
"guile-semver-" version ".tar.gz"))
(sha256
(base32
"109p4n39ln44cxvwdccf9kgb96qx54makvd2ir521ssz6wchjyag"))))
(method git-fetch)
(uri (git-reference
(url "https://codeberg.org/daym/guile-semver.git")
(commit (string-append "v" version))))
(file-name (git-file-name "guile-semver" version))
(sha256
(base32
"1pb1fvm6myb3cdkqn18rhygzh8yhk3b5a8966ppwgg0d92xhxp1v"))))
(build-system gnu-build-system)
(native-inputs
(list guile-3.0 pkg-config))
(list guile-3.0 pkg-config autoconf automake))
(inputs
(list guile-3.0))
(home-page "https://ngyro.com/software/guile-semver.html")