summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2019-12-31 12:56:27 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2019-12-31 12:56:27 +0300
commit10504e0cdf2aa87bb723fd40c96839a48ac3bf8a (patch)
tree0242ac7a0ce515beeebe0cc8e9b5458bd2074650
parentguix: Add php-7.3.12. (diff)
downloadguix-wigust-10504e0cdf2aa87bb723fd40c96839a48ac3bf8a.tar.gz
gnu: Delete vc-dwim-git-worktree.
* guix/wigust/packages/version-control.scm: Delete file.
-rw-r--r--guix/wigust/packages/version-control.scm35
1 files changed, 0 insertions, 35 deletions
diff --git a/guix/wigust/packages/version-control.scm b/guix/wigust/packages/version-control.scm
deleted file mode 100644
index 2989392..0000000
--- a/guix/wigust/packages/version-control.scm
+++ /dev/null
@@ -1,35 +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 version-control)
- #: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 gnu)
- #:use-module (gnu packages version-control)
- #:use-module (gnu packages))
-
-(define-public vc-dwim-git-worktree
- (package
- (inherit vc-dwim)
- (name "vc-dwim-git-worktree")
- (source (origin
- (inherit (package-source vc-dwim))
- (patches (search-patches "vc-dwim-find-git-worktree.patch"))))))