diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-10-16 13:29:15 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-10-16 13:58:56 +0200 |
commit | fe0ab5dbeacbd1b00a0b5bfeef6dafa82e0c037d (patch) | |
tree | 1b6c09f0558113931eedbe93591122f6ad1c4981 /gnu/packages | |
parent | 1229979232259d6e9cef5af8e8dfd362fdd5374f (diff) | |
download | guix-fe0ab5dbeacbd1b00a0b5bfeef6dafa82e0c037d.tar.gz guix-fe0ab5dbeacbd1b00a0b5bfeef6dafa82e0c037d.zip |
gnu: Remove faac.
Contrary to the misleading license field, the ISO MPEG-4 code is not actually
GPL-licensed, but actually contradicts freedom 0.
For further information, see <https://issues.guix.gnu.org/58147>.
* gnu/packages/audio.scm (faac): Delete variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/audio.scm | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index f57c22240a..b9e374fb5c 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -475,31 +475,6 @@ by MusicIP.") (home-page "https://code.google.com/archive/p/musicip-libofa/") (license license:gpl2+))) -(define-public faac - (package - (name "faac") - (version "1.30") - (source - (origin - (method url-fetch) - (uri - (string-append "mirror://sourceforge/faac/faac-src" - "/faac-" version "/faac-1_30.tar.gz")) - (sha256 - (base32 "1lmj0dib3mjp84jhxc5ddvydkzzhb0gfrdh3ikcidjlcb378ghxd")))) - (build-system gnu-build-system) - (native-inputs - (list autoconf automake libtool pkg-config)) - (synopsis "Freeware Advanced Audio Coder") - (description "FAAC is an MPEG-4 and MPEG-2 AAC encoder.") - (home-page "https://www.audiocoding.com/faac.html") - (license - (list - ;; ISO MPEG-4 reference code. - license:gpl2+ - ;; Others. - license:lgpl2.0+)))) - (define-public libtimidity (package (name "libtimidity") |