summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2022-08-24 12:37:23 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:36:36 +0200
commiteca3ed0659d936da2189beda202ddaf64ae28810 (patch)
treeb8de378fc4d1df4e30f7683418feb023f7236724
parentbbb431a5d37440f606840a8bf294415129e4f109 (diff)
siguix: Remove trash-cli-old.
* siguix/packages/shellutils.scm: Remove file.
-rw-r--r--siguix/packages/shellutils.scm77
1 files changed, 0 insertions, 77 deletions
diff --git a/siguix/packages/shellutils.scm b/siguix/packages/shellutils.scm
deleted file mode 100644
index db1ffc7..0000000
--- a/siguix/packages/shellutils.scm
+++ /dev/null
@@ -1,77 +0,0 @@
-;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
-;;; Copyright © 2016, 2017 Alex Griffin <a@ajgrf.com>
-;;; Copyright © 2016 Christopher Baines <mail@cbaines.net>
-;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
-;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
-;;; Copyright © 2018 Benjamin Slade <slade@jnanam.net>
-;;; Copyright © 2019 Collin J. Doering <collin@rekahsoft.ca>
-;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
-;;; Copyright © 2020 aecepoglu <aecepoglu@fastmail.fm>
-;;; Copyright © 2020 Dion Mendel <guix@dm9.info>
-;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
-;;; Copyright © 2021 Alexandr Vityazev <avityazev@posteo.org>
-;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
-;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo@hotmail.com>
-;;; Copyright © 2021 Wiktor Żelazny <wzelazny@vurv.cz>
-;;;
-;;; 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 (siguix packages shellutils)
- #: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 python)
- #:use-module (gnu packages base)
- #:use-module (gnu packages python))
-
-(define-public trash-cli-old
- (package
- (name "trash-cli-old")
- (version "0.17.1.14")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "trash-cli" version))
- (sha256
- (base32
- "01q0cl04ljf214z6s3g256gsxx3pqsgaf6ac1zh0vrq5bnhnr85h"))))
- (build-system python-build-system)
- (arguments
- `(#:python ,python-2
- #:tests? #f ; no tests
- #:phases
- (modify-phases %standard-phases
- (add-before 'build 'patch-path-constants
- (lambda* (#:key inputs #:allow-other-keys)
- (let ((libc (assoc-ref inputs "libc"))
- (coreutils (assoc-ref inputs "coreutils")))
- (substitute* "trashcli/list_mount_points.py"
- (("\"/lib/libc.so.6\".*")
- (string-append "\"" libc "/lib/libc.so.6\"\n"))
- (("\"df\"")
- (string-append "\"" coreutils "/bin/df\"")))))))))
- (inputs (list coreutils))
- (home-page "https://github.com/andreafrancia/trash-cli")
- (synopsis "Trash can management tool")
- (description
- "trash-cli is a command line utility for interacting with the
-FreeDesktop.org trash can used by GNOME, KDE, XFCE, and other common desktop
-environments. It can move files to the trash, and remove or list files that
-are already there.")
- (license license:gpl2+)))