diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2022-10-23 14:02:08 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2022-10-23 14:02:08 +0300 |
| commit | 9bf0b2c6b0cd7c9d3102563cb07a48c6d03932a0 (patch) | |
| tree | eb98bd08de28a5f0885e100c55e1dea1d272cac8 | |
| parent | gnu: Add emacs-yaml-pro. (diff) | |
| download | guix-wigust-9bf0b2c6b0cd7c9d3102563cb07a48c6d03932a0.tar.gz | |
Delete packages with dmenu-patched.
Patched dmenu is broken on hunk 4 after dmenu upgrade.
| -rw-r--r-- | guix/wigust/packages/password-utils.scm | 31 | ||||
| -rw-r--r-- | guix/wigust/packages/suckless.scm | 34 |
2 files changed, 0 insertions, 65 deletions
diff --git a/guix/wigust/packages/password-utils.scm b/guix/wigust/packages/password-utils.scm deleted file mode 100644 index 6713e6a..0000000 --- a/guix/wigust/packages/password-utils.scm +++ /dev/null @@ -1,31 +0,0 @@ -;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2020 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 password-utils) - #:use-module (guix) - #:use-module (guix build-system gnu) - #:use-module ((guix licenses) #:prefix license:) - #:use-module (gnu packages password-utils) - #:use-module (wigust packages suckless)) - -(define-public password-store-custom-dmenu - (package - (inherit password-store) - (name "password-store") - (inputs `(("dmenu" ,dmenu-patched) - ,@(assoc-remove! (package-inputs password-store) "dmenu"))))) diff --git a/guix/wigust/packages/suckless.scm b/guix/wigust/packages/suckless.scm deleted file mode 100644 index 0a1b648..0000000 --- a/guix/wigust/packages/suckless.scm +++ /dev/null @@ -1,34 +0,0 @@ -;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2020 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 suckless) - #:use-module (guix) - #:use-module (guix build-system gnu) - #:use-module (gnu packages) - #:use-module (gnu packages suckless) - #:use-module ((guix licenses) #:prefix license:)) - -(define-public dmenu-patched - (package - (inherit dmenu) - (name "dmenu-patched") - (version (package-version dmenu)) - (source - (origin - (inherit (package-source dmenu)) - (patches (search-patches "dmenu-center.patch")))))) |
