Remove duplicate video packages
more/packages/video.scm
42 | 42 | #:use-module (gnu packages xml) | |
43 | 43 | #:use-module (gnu packages xorg)) | |
44 | 44 | ||
45 | - | (define-public ffms2 | |
46 | - | (package | |
47 | - | (name "ffms2") | |
48 | - | (version "2.23") | |
49 | - | (home-page "https://github.com/FFMS/ffms2/") | |
50 | - | (source (origin | |
51 | - | (method url-fetch) | |
52 | - | (uri (string-append home-page "archive/" version ".tar.gz")) | |
53 | - | (sha256 | |
54 | - | (base32 | |
55 | - | "1vbkab8vrplxz5xgag8ggzkwp4f7nf285pd0l2a7zy66n6i2m6xh")))) | |
56 | - | (build-system gnu-build-system) | |
57 | - | (arguments | |
58 | - | '(#:configure-flags | |
59 | - | (list "--enable-avresample"))) | |
60 | - | (inputs | |
61 | - | `(("zlib" ,zlib))) | |
62 | - | (propagated-inputs | |
63 | - | `(("ffmpeg" ,ffmpeg))) | |
64 | - | (native-inputs | |
65 | - | `(("pkg-config" ,pkg-config))) | |
66 | - | (synopsis "Cross-platform wrapper around ffmpeg/libav") | |
67 | - | (description | |
68 | - | "FFMpegSource is a wrapper library around ffmpeg/libav that allows | |
69 | - | programmers to access a standard API to open and decompress media files.") | |
70 | - | (license license:gpl2+))); inherits from ffmpeg | |
71 | - | ;; sources are distributed under a different license that the binary. | |
72 | - | ;; see https://github.com/FFMS/ffms2/blob/master/COPYING | |
73 | - | ||
74 | 45 | (define-public aegisub | |
75 | 46 | (package | |
76 | 47 | (name "aegisub-wip") | |
… | |||
126 | 97 | ; by upstream). See https://github.com/Aegisub/Aegisub/blob/master/LICENCE | |
127 | 98 | ; src/MatroskaParser.(c|h) is under bsd-3 with permission from the author | |
128 | 99 | ||
129 | - | (define-public gssdp | |
130 | - | (package | |
131 | - | (name "gssdp") | |
132 | - | (version "1.0.2") | |
133 | - | (source (origin | |
134 | - | (method url-fetch) | |
135 | - | (uri (string-append "https://download.gnome.org/sources/gssdp/" | |
136 | - | (version-major+minor version) "/gssdp-" | |
137 | - | version ".tar.xz")) | |
138 | - | (sha256 | |
139 | - | (base32 | |
140 | - | "1p1m2m3ndzr2whipqw4vfb6s6ia0g7rnzzc4pnq8b8g1qw4prqd1")))) | |
141 | - | (build-system gnu-build-system) | |
142 | - | (home-page "") | |
143 | - | (inputs | |
144 | - | `(("util-linux" ,util-linux) | |
145 | - | ("glib" ,glib) | |
146 | - | ("libsoup" ,libsoup))) | |
147 | - | (native-inputs | |
148 | - | `(("gobject-introspection" ,gobject-introspection) | |
149 | - | ("pkg-config" ,pkg-config) | |
150 | - | ("vala" ,vala))) | |
151 | - | (synopsis "") | |
152 | - | (description "") | |
153 | - | (license license:lgpl2.0))) | |
154 | - | ||
155 | - | (define-public gupnp | |
156 | - | (package | |
157 | - | (name "gupnp") | |
158 | - | (version "1.0.2") | |
159 | - | (source (origin | |
160 | - | (method url-fetch) | |
161 | - | (uri (string-append "https://download.gnome.org/sources/gupnp/" | |
162 | - | (version-major+minor version) "/gupnp-" | |
163 | - | version ".tar.xz")) | |
164 | - | (sha256 | |
165 | - | (base32 | |
166 | - | "043nqxlj030a3wvd6x4c9z8fjarjjjsl2pjarl0nn70ig6kzswsi")))) | |
167 | - | (build-system gnu-build-system) | |
168 | - | (inputs | |
169 | - | `(("util-linux" ,util-linux) | |
170 | - | ("glib" ,glib) | |
171 | - | ("gssdp" ,gssdp) | |
172 | - | ("libsoup" ,libsoup) | |
173 | - | ("libxml" ,libxml2))) | |
174 | - | (native-inputs | |
175 | - | `(("gobject-introspection" ,gobject-introspection) | |
176 | - | ("pkg-config" ,pkg-config) | |
177 | - | ("vala" ,vala))) | |
178 | - | (home-page "") | |
179 | - | (synopsis "") | |
180 | - | (description "") | |
181 | - | (license license:lgpl2.0))) | |
182 | - | ||
183 | - | (define-public gupnp-av | |
184 | - | (package | |
185 | - | (name "gupnp-av") | |
186 | - | (version "0.12.9") | |
187 | - | (source (origin | |
188 | - | (method url-fetch) | |
189 | - | (uri (string-append "https://download.gnome.org/sources/gupnp-av/" | |
190 | - | (version-major+minor version) "/gupnp-av-" | |
191 | - | version ".tar.xz")) | |
192 | - | (sha256 | |
193 | - | (base32 | |
194 | - | "0iylhn722rlmnzrmwx452a9ag42v8nk9mrcfdjv9f6ka4m4n9ib2")))) | |
195 | - | (build-system gnu-build-system) | |
196 | - | (inputs | |
197 | - | `(("gssdp" ,gssdp) | |
198 | - | ("gupnp" ,gupnp) | |
199 | - | ("glib" ,glib) | |
200 | - | ("libsoup" ,libsoup) | |
201 | - | ("libxml" ,libxml2) | |
202 | - | ("util-linux" ,util-linux))) | |
203 | - | (native-inputs | |
204 | - | `(("gobject-introspection" ,gobject-introspection) | |
205 | - | ("pkg-config" ,pkg-config) | |
206 | - | ("vala" ,vala))) | |
207 | - | (home-page "") | |
208 | - | (synopsis "") | |
209 | - | (description "") | |
210 | - | (license license:lgpl2.0))) | |
211 | - | ||
212 | - | (define-public gupnp-dlna | |
213 | - | (package | |
214 | - | (name "gupnp-dlna") | |
215 | - | (version "0.10.5") | |
216 | - | (source (origin | |
217 | - | (method url-fetch) | |
218 | - | (uri (string-append "https://download.gnome.org/sources/gupnp-dlna/" | |
219 | - | (version-major+minor version) "/gupnp-dlna-" | |
220 | - | version ".tar.xz")) | |
221 | - | (sha256 | |
222 | - | (base32 | |
223 | - | "0spzd2saax7w776p5laixdam6d7smyynr9qszhbmq7f14y13cghj")))) | |
224 | - | (build-system gnu-build-system) | |
225 | - | (inputs | |
226 | - | `(("gssdp" ,gssdp) | |
227 | - | ("gupnp" ,gupnp) | |
228 | - | ("glib" ,glib) | |
229 | - | ("libsoup" ,libsoup) | |
230 | - | ("libxml" ,libxml2) | |
231 | - | ("util-linux" ,util-linux))) | |
232 | - | (native-inputs | |
233 | - | `(("gobject-introspection" ,gobject-introspection) | |
234 | - | ("pkg-config" ,pkg-config) | |
235 | - | ("vala" ,vala))) | |
236 | - | (home-page "") | |
237 | - | (synopsis "") | |
238 | - | (description "") | |
239 | - | (license license:lgpl2.0))) | |
240 | - | ||
241 | 100 | (define-public gupnp-tools | |
242 | 101 | (package | |
243 | 102 | (name "gupnp-tools") |