summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2019-07-05 14:11:55 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2019-07-05 14:11:55 +0300
commit33b5c567c59635883e9c82f358430494e09e3311 (patch)
tree295b97d081fa97fe3dcb1e9428a85c456a82a6fb
parentwigust: Delete calamares. (diff)
downloadguix-wigust-33b5c567c59635883e9c82f358430494e09e3311.tar.gz
wigust: Delete compression.
* wigust/packages/compression.scm: Delete file. * .gitlab-ci.yml (compression): Delete job.
-rw-r--r--.gitlab-ci.yml5
-rw-r--r--wigust/packages/compression.scm62
2 files changed, 0 insertions, 67 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 08341f2..aaa4fb9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,11 +9,6 @@ admin:
variables:
FILE: wigust/packages/admin.scm
-compression:
- extends: .build
- variables:
- FILE: wigust/packages/compression.scm
-
databases:
extends: .build
variables:
diff --git a/wigust/packages/compression.scm b/wigust/packages/compression.scm
deleted file mode 100644
index 4a662f8..0000000
--- a/wigust/packages/compression.scm
+++ /dev/null
@@ -1,62 +0,0 @@
-;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
-;;;
-;;; 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 <http://www.gnu.org/licenses/>.
-
-(define-module (wigust packages compression)
- #:use-module (gnu packages compression)
- #:use-module ((guix licenses) #:prefix license:)
- #:use-module (guix utils)
- #:use-module (guix packages)
- #:use-module (guix download)
- #:use-module (guix git-download)
- #:use-module (guix build-system cmake)
- #:use-module (guix build-system gnu)
- #:use-module (guix build-system perl)
- #:use-module (guix build-system python)
- #:use-module (gnu packages)
- #:use-module (gnu packages assembly)
- #:use-module (gnu packages autotools)
- #:use-module (gnu packages backup)
- #:use-module (gnu packages base)
- #:use-module (gnu packages check)
- #:use-module (gnu packages curl)
- #:use-module (gnu packages file)
- #:use-module (gnu packages perl)
- #:use-module (gnu packages pkg-config)
- #:use-module (gnu packages python)
- #:use-module (gnu packages tls)
- #:use-module (gnu packages valgrind)
- #:use-module (ice-9 match)
- #:use-module ((srfi srfi-1) #:select (last)))
-
-(define-public unrar
- (package
- (name "unrar")
- (version "5.6.3")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "http://www.rarlab.com/rar/unrarsrc-" version ".tar.gz"))
- (sha256
- (base32
- "0blpl78grcr6d9wwwxhd5343i223972acnzhp7lhm12xfh5fg465"))))
- (build-system gnu-build-system)
- (home-page "http://www.rarlab.com/rar_add.htm")
- (synopsis "RAR archive extraction tool")
- (description "Unrar is a simple command-line program to list and extract
-RAR archives.")
- (license license:gpl2+)))