diff options
author | Ben Sturmfels <ben@sturm.com.au> | 2021-08-19 18:27:04 +1000 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2021-08-19 18:27:04 +1000 |
commit | e705c4de617d535288daacd04aba70aa56d2a6df (patch) | |
tree | 69179b23f627dab65d73465700c9ad4559bf15c6 | |
parent | b2868768148f633df1e26b9bf89d4e737727708d (diff) | |
download | mediagoblin-e705c4de617d535288daacd04aba70aa56d2a6df.tar.lz mediagoblin-e705c4de617d535288daacd04aba70aa56d2a6df.tar.xz mediagoblin-e705c4de617d535288daacd04aba70aa56d2a6df.zip |
Tidy up guix-env.scm.
-rw-r--r-- | guix-env.scm | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/guix-env.scm b/guix-env.scm index 1103d8d4..87ed2957 100644 --- a/guix-env.scm +++ b/guix-env.scm @@ -27,17 +27,19 @@ ;;; ;;; WORK IN PROGRESS - JOBS TO DO: ;;; -;;; 1. Submit the below python-soundfile package to Guix after libsndfile -;;; updates in Guix core-updates branch have been merged into master [bug -;;; 47181] https://debbugs.gnu.org/cgi/bugreport.cgi?bug=47181 +;;; 1. Refine and submit the below upgraded python-wtforms 2.3.3 to Guix. ;;; -;;; 2. Refine and submit the below upgraded python-wtforms 2.3.3 to Guix. +;;; 2. Add ("opus" ,opus) to the libsndfile propagated inputs. This change is +;;; waiting in core-updates (March 2021). ;;; -;;; 3. Don't have NPM in this environment yet. Possibly rewrite MediaGoblin's +;;; 3. Renable the tests in Guix's python-soundfile once OGG support is +;;; available from libsndfile. +;;; +;;; 4. Don't have NPM in this environment yet. Possibly rewrite MediaGoblin's ;;; JavaScript code not to use jQuery. Possibly improve the ;;; no-bundled-JavaScript video/audio playing experience. ;;; -;;; 4. Package MediaGoblin itself as a Guix service. Look at adding a PostgreSQL +;;; 5. Package MediaGoblin itself as a Guix service. Look at adding a PostgreSQL ;;; database instead of sqlite3. ;;; ;;; ======================================== @@ -145,6 +147,7 @@ (guix build-system gnu) (guix build-system python) (gnu packages) + (gnu packages audio) (gnu packages autotools) (gnu packages base) (gnu packages certs) @@ -207,13 +210,6 @@ for Python web development. It is very similar to the web form API available in Django, but is a standalone package.") (license license:bsd-3))) - -;; TODO: Add ("opus" ,opus) to the libsndfile propagated inputs. This change is -;; waiting in core-updates (March 2021). - -;; TODO: Renable the tests in Guix's python-soundfile once OGG support is -;; available from libsndfile. - ;; ================================================================= (define mediagoblin |