Browse Source

`vilor-dwm` moved to `suckless.scm`

master
Ivan Polyakov 3 years ago
parent
commit
db14d24731
No known key found for this signature in database
GPG Key ID: E5245EA191C94054
  1. 38
      vilor/packages/suckless.scm
  2. 20
      vilor/packages/vilor-dwm.scm

38
vilor/packages/suckless.scm

@ -0,0 +1,38 @@ @@ -0,0 +1,38 @@
;;; Copyright (C) 2022 Ivan Polyakov
;;;
;;; This file is part of vilor's guix channel.
;;;
;;; Vilor's guix channel 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.
;;;
;;; Vilor's guix channel 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 this program. If not, see <https://www.gnu.org/licenses/>.
(define-module (vilor packages vilor-dwm)
#:use-module (gnu packages suckless)
#:use-module (guix git-download)
#:use-module (guix packages)
#:use-module (vilor packages))
(define-public vilor-dwm
(package
(inherit dwm)
(name "vilor-dwm")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "http://notabug.org/vilor/dwm.git")
(commit "ae0bba9706f42003ae1c25f04b92c757038a3d26")))
(sha256
(base32 "14lmcdfi2by59ywqzh2byf7zmbwk364r5jn46d5kl0w6b240cagy"))))
(home-page "http://notabug.org/vilor/dwm")
(synopsis "Patched and configured dwm 6.2")))

20
vilor/packages/vilor-dwm.scm

@ -1,20 +0,0 @@ @@ -1,20 +0,0 @@
(define-module (vilor packages vilor-dwm)
#:use-module (gnu packages suckless)
#:use-module (guix git-download)
#:use-module (guix packages)
#:use-module (vilor packages))
(define-public vilor-dwm
(package
(inherit dwm)
(name "vilor-dwm")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "http://notabug.org/vilor/dwm.git")
(commit "ae0bba9706f42003ae1c25f04b92c757038a3d26")))
(sha256
(base32 "14lmcdfi2by59ywqzh2byf7zmbwk364r5jn46d5kl0w6b240cagy"))))
(home-page "http://notabug.org/vilor/dwm")
(synopsis "Patched and configured dwm 6.2")))