summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2020-02-15 17:55:56 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2020-02-26 21:12:26 +0300
commit6766e70ed5687f4c9d57caf59caa681c1163d876 (patch)
tree554c62f4761c0a0617ef1cb609a7ea87f7b5ed3a
parentguix: php: Delete ext/zip/tests/bug53885.phpt test. (diff)
downloadguix-wigust-6766e70ed5687f4c9d57caf59caa681c1163d876.tar.gz
guix: Add my-docker and containerd-without-tests.
* guix/wigust/packages/docker.scm: New file.
-rw-r--r--guix/wigust/packages/docker.scm14
1 files changed, 14 insertions, 0 deletions
diff --git a/guix/wigust/packages/docker.scm b/guix/wigust/packages/docker.scm
new file mode 100644
index 0000000..e9b8e55
--- /dev/null
+++ b/guix/wigust/packages/docker.scm
@@ -0,0 +1,14 @@
+(define-module (wigust packages docker)
+ #:use-module (gnu packages docker)
+ #:use-module (guix packages))
+
+(define-public containerd-without-tests
+ (package
+ (inherit containerd)
+ (arguments `(#:tests? #f ,@(package-arguments containerd)))))
+
+(define-public my-docker
+ (package
+ (inherit docker)
+ (inputs `(("containerd" ,containerd-without-tests)
+ ,@(assoc-remove! (package-inputs docker) "containerd")))))