From 5c1c824fb6fc7881e2cf9bedcce7ff24550f8210 Mon Sep 17 00:00:00 2001 From: Timo Wilken Date: Tue, 18 Apr 2023 20:39:42 +0200 Subject: Zsh-related packages have been upstreamed --- tw/home.scm | 1 - tw/packages/shell.scm | 52 --------------------------------------------------- 2 files changed, 53 deletions(-) delete mode 100644 tw/packages/shell.scm (limited to 'tw') diff --git a/tw/home.scm b/tw/home.scm index 34fe80f4..5b78a3be 100644 --- a/tw/home.scm +++ b/tw/home.scm @@ -14,7 +14,6 @@ #:use-module (tw packages catppuccin) #:use-module (tw packages ci) #:use-module (tw packages games) - #:use-module (tw packages shell) #:use-module (tw packages xorg) #:use-module (tw system) #:use-module (tw theme)) diff --git a/tw/packages/shell.scm b/tw/packages/shell.scm deleted file mode 100644 index d46820d6..00000000 --- a/tw/packages/shell.scm +++ /dev/null @@ -1,52 +0,0 @@ -(define-module (tw packages shell) - #:use-module (gnu packages shells) - #:use-module (guix build-system copy) - #:use-module (guix git-download) - #:use-module ((guix licenses) #:prefix license:) - #:use-module (guix packages)) - -(define-public zsh-completions - (package - (name "zsh-completions") - (version "0.34.0") - (home-page "https://github.com/zsh-users/zsh-completions") - (source (origin - (method git-fetch) - (uri (git-reference (url home-page) (commit version))) - (file-name (git-file-name name version)) - (sha256 (base32 "0jjgvzj3v31yibjmq50s80s3sqi4d91yin45pvn3fpnihcrinam9")))) - (build-system copy-build-system) - (arguments '(#:install-plan '(("src/" "share/zsh/site-functions/") - ("README.md" "share/doc/zsh-completions/")))) - (synopsis "Additional completion definitions for Zsh") - (description "This projects aims at gathering/developing new -completion scripts that are not available in Zsh yet. The scripts may -be contributed to the Zsh project when stable enough.") - (license (license:non-copyleft - "file://LICENSE" - "Custom BSD-like, permissive, non-copyleft license.")))) - -(define-public zsh-history-substring-search - (package - (name "zsh-history-substring-search") - (version "1.0.2") - (home-page "https://github.com/zsh-users/zsh-history-substring-search") - (source (origin - (method git-fetch) - (uri (git-reference (url home-page) (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 (base32 "0y8va5kc2ram38hbk2cibkk64ffrabfv1sh4xm7pjspsba9n5p1y")))) - (build-system copy-build-system) - (arguments '(#:install-plan - '(("zsh-history-substring-search.plugin.zsh" - "share/zsh/plugins/zsh-history-substring-search/") - ("zsh-history-substring-search.zsh" - "share/zsh/plugins/zsh-history-substring-search/") - ("README.md" - "share/doc/zsh-history-substring-search/")))) - (synopsis "ZSH port of Fish history search (up arrow)") - (description "This is a clean-room implementation of the Fish shell's -history search feature, where you can type in any part of any command from -history and then press chosen keys, such as the UP and DOWN arrows, to cycle -through matches.") - (license license:bsd-3))) -- cgit v1.2.3