aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher R. Nelson <christopher.nelson@languidnights.com>2024-01-22 20:28:32 -0500
committerChristopher R. Nelson <christopher.nelson@languidnights.com>2024-01-22 20:28:32 -0500
commitd137f95704a99a060b4041fb4f17fcd8cb8059e4 (patch)
tree5c16141a4cad43021694c283a302f7d831830653
parent35fb2f2a04d1ed1594c596c22c283af702a6a8ef (diff)
doc: add README
-rw-r--r--README.rst27
-rw-r--r--crn/packages/cpp.scm2
-rw-r--r--crn/packages/xdisorg.scm29
3 files changed, 27 insertions, 31 deletions
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..a0769c8
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,27 @@
+Languidnights' Repository
+*************************
+
+An *unofficial* repository for `GNU Guix`_. I host a little bit of my
+own work, and some packages I use that aren't for various reasons
+packaged in the official repos.
+
+Included
+========
+
+* cpplint-up: an updated version of cpplint.
+ just the official package, with a later version
+* black-box: Guess where the crystals are!
+ A puzzle game from when I was young
+* go-1.21: a package definition lifted from the mailing list for go
+ 1.21. I no longer use it, but it might come in handy until the
+ official build drops.
+* sway-contrib: the script I used in sway to set transparency was
+ removed from the main repo, so I 'build' it from its new home. Some
+ other goodies included.
+* luastatus: Universal status bar content generator.
+ I use this+sway-bar for a cozy experience to the status bar in sway
+* guile-reading-heap: An application for managing your reading list.
+ This is alpha-quality software I wrote. While it works, I don't expect
+ it to cover many (most?) use cases.
+
+.. _`GNU Guix`: https://guix.gnu.org/
diff --git a/crn/packages/cpp.scm b/crn/packages/cpp.scm
index 4120342..828b5e2 100644
--- a/crn/packages/cpp.scm
+++ b/crn/packages/cpp.scm
@@ -21,5 +21,3 @@
(base32 "13l86aq0h1jga949k79k9x3hw2xqchjc162sclg2f99vz98zcz15"))
(file-name (git-file-name name version))
(patches (crn/search-patches "cpplint-pytest-version.patch"))))))
-
-cpplint-up
diff --git a/crn/packages/xdisorg.scm b/crn/packages/xdisorg.scm
deleted file mode 100644
index 1c9cc29..0000000
--- a/crn/packages/xdisorg.scm
+++ /dev/null
@@ -1,29 +0,0 @@
-(define-module (crn packages xdisorg)
- #:use-module (crn packages)
- #:use-module (gnu packages)
- #:use-module ((gnu packages xdisorg) #:prefix gpx:)
- #:use-module (guix download)
- #:use-module (guix gexp)
- #:use-module (guix packages))
-
-;; (define-public rofi
-;; (package
-;; (inherit gpx:rofi)
-;; (version "1.7.5")
-;; (source (origin
-;; (method url-fetch)
-;; (uri (string-append "https://github.com/davatorium/rofi/"
-;; "releases/download/"
-;; version "/rofi-" version ".tar.xz"))
-;; (sha256
-;; (base32
-;; "138c4bl60p7namsb2pk8q5cdlxbdkli7zny192vk5jv5s5kczzya"))
-;; (snippet
-;; #~(begin
-;; ;; Delete pre-generated files.
-;; (for-each delete-file
-;; (list "lexer/theme-lexer.c"
-;; "lexer/theme-parser.c"
-;; "lexer/theme-parser.h"
-;; "resources/resources.c"
-;; "resources/resources.h"))))))))