about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBonfaceKilz2021-08-18 10:18:08 +0300
committerBonfaceKilz2021-08-18 10:18:08 +0300
commitac3cdf57e7169582b60f36aed3a6aa220bef6852 (patch)
treeceb69be2424f92a0f3caf8b48a93a1e1a9221959
parent495712f5d09fcc7025787a87770f786758c03d7e (diff)
downloadguix-bioinformatics-ac3cdf57e7169582b60f36aed3a6aa220bef6852.tar.gz
Remove csv-diff from channel.
This is already packaged upstream.

* gn/packages/genenetwork.scm: Remove "(gn packages golang)" import.
* gn/packages/golang.scm: Delete file.
-rw-r--r--gn/packages/genenetwork.scm1
-rw-r--r--gn/packages/golang.scm66
2 files changed, 0 insertions, 67 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm
index 46f9d54..330421f 100644
--- a/gn/packages/genenetwork.scm
+++ b/gn/packages/genenetwork.scm
@@ -49,7 +49,6 @@
   #:use-module (gn packages databases)
   #:use-module (gn packages elixir)
   #:use-module (gn packages gemma)
-  #:use-module (gn packages golang)
   #:use-module (gn packages javascript)
   #:use-module (gn packages phewas)
   #:use-module (gn packages python)
diff --git a/gn/packages/golang.scm b/gn/packages/golang.scm
deleted file mode 100644
index ca9ee13..0000000
--- a/gn/packages/golang.scm
+++ /dev/null
@@ -1,66 +0,0 @@
-(define-module (gn packages golang)
-  #:use-module ((guix licenses) #:prefix license:)
-  #:use-module (guix git-download)
-  #:use-module (guix packages)
-  #:use-module (guix build-system go)
-  #:use-module (gnu packages)
-  #:use-module (gnu packages golang)
-  #:use-module (gnu packages syncthing)
-  #:use-module (srfi srfi-1))
-
-(define-public go-github-com-oneofone-xxhash
-  (package
-    (name "go-github-com-oneofone-xxhash")
-    (version "1.2.8")
-    (source
-      (origin
-        (method git-fetch)
-        (uri (git-reference
-               (url "https://github.com/OneOfOne/xxhash")
-               (commit (string-append "v" version))))
-        (file-name (git-file-name name version))
-        (sha256
-         (base32
-          "0f98qk83l2fhpclvrgyxsa9b8m4pipf11fah85bnjl01wy4lvybw"))))
-    (build-system go-build-system)
-    (arguments
-     '(#:import-path "github.com/OneOfOne/xxhash"))
-    (home-page "https://github.com/OneOfOne/xxhash")
-    (synopsis "Go implementation of xxhash")
-    (description "This is a native Go implementation of the
-@url{https://github.com/Cyan4973/xxHash, xxhash} algorithm, an extremely fast
-non-cryptographic Hash algorithm, working at speeds close to RAM limits.")
-    (license license:asl2.0)))
-
-(define-public go-github-com-aswinkarthik-csvdiff
-  (package
-    (name "go-github-com-aswinkarthik-csvdiff")
-    (version "1.4.0")
-    (source
-      (origin
-        (method git-fetch)
-        (uri (git-reference
-               (url "https://github.com/aswinkarthik/csvdiff")
-               (commit (string-append "v" version))))
-        (file-name (git-file-name name version))
-        (sha256
-         (base32
-          "0cd1ikxsypjqisfnmr7zix3g7x8p892w77086465chyd39gpk97b"))))
-    (build-system go-build-system)
-    (arguments
-     '(#:import-path "github.com/aswinkarthik/csvdiff"))
-    (propagated-inputs
-     `(("go-golang-org-x-sys" ,go-golang-org-x-sys)
-       ("go-github-com-stretchr-testify" ,go-github-com-stretchr-testify)
-       ("go-github-com-spf13-cobra" ,go-github-com-spf13-cobra)
-       ("go-github-com-spf13-afero" ,go-github-com-spf13-afero)
-       ("go-github-com-spaolacci-murmur3" ,go-github-com-spaolacci-murmur3)
-       ("go-github-com-mattn-go-colorable" ,go-github-com-mattn-go-colorable)
-       ("go-github-com-fatih-color" ,go-github-com-fatih-color)
-       ("go-github-com-cespare-xxhash" ,go-github-com-cespare-xxhash)
-       ("go-github-com-oneofone-xxhash" ,go-github-com-oneofone-xxhash)))
-    (home-page "https://github.com/aswinkarthik/csvdiff")
-    (synopsis "csvdiff")
-    (description
-     "This package provides a fast diff tool for comparing csv files.")
-    (license license:expat)))