diff --git a/vilor/packages/suckless.scm b/vilor/packages/suckless.scm new file mode 100644 index 0000000..f522d2c --- /dev/null +++ b/vilor/packages/suckless.scm @@ -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 . + +(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"))) + diff --git a/vilor/packages/vilor-dwm.scm b/vilor/packages/vilor-dwm.scm deleted file mode 100644 index 43f2aef..0000000 --- a/vilor/packages/vilor-dwm.scm +++ /dev/null @@ -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")))