Commit graph

480 commits

Author SHA1 Message Date
Fabian Affolter 93f7742d61 google-music-scripts: fix build 2021-01-10 15:56:55 +01:00
Jan Tojnar e6c0c98940
Merge branch 'master' into staging-next
zynaddsubfx conflict has been updated to 3.0.1, which conflicted with rewrite after 3.0.5 update on a different branch.
2021-01-08 02:07:34 +01:00
Rouven Czerwinski cf2c95a19f mpris-scrobbler: init at 0.4.0.1
Minimalistic scrobbler using the the MPRIS specification to scrobble to
libre.fm and last.fm.
2021-01-07 16:45:53 +01:00
github-actions[bot] 581059aed4
Merge staging-next into staging 2021-01-04 00:57:38 +00:00
Bernardo Meurer cea2b9eff4 beets: add doronbehar to maintainers 2021-01-03 14:36:54 +02:00
Bernardo Meurer 264b77f005 beets: add lovesegfault to maintainers 2021-01-03 14:36:54 +02:00
Bernardo Meurer 0faf72a557 beets: 1.4.9 -> unstable-2020-12-22
The maintainer has stopped cutting releases[1]. Since the last release,
1.4.9, includes a dependency that is filled with hate speech[2] it's all
the more reason to package the unstable version and eliminate that
requirement.

Moreover a number of fixes, improvements, and features have landed
since.

[1]: https://github.com/beetbox/beets/issues/3625
[2]: https://github.com/NixOS/nixpkgs/pull/90504

Co-authored-by: Doron Behar <doron.behar@gmail.com>
2021-01-03 14:36:53 +02:00
github-actions[bot] 0eb369d907
Merge staging-next into staging 2021-01-01 18:39:12 +00:00
Jörg Thalheim e03e3c5fad
kaldi: init at 2020-12-26
State-of-the-art speech-to-text engine - used in rhasspy

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-01 11:07:37 +01:00
Ben Siraphob b04fc593e7 treewide: cmake buildInputs to nativeBuildInputs, minor cleanups 2021-01-01 11:52:33 +07:00
Jörg Thalheim 6baecc0abb
aucdtect: remove (#107611)
* aucdtect: remove

* Update pkgs/top-level/aliases.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

Co-authored-by: Peter Hoeg <peter@hoeg.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2020-12-28 09:26:52 +08:00
Sandro 35296b1e11
Merge pull request #105193 from SuperSandro2000/volctl-0.8.0
volctl: 0.6.3 -> 0.8.0
2020-12-24 21:30:53 +01:00
Sandro d33fb82b8c
Merge pull request #101947 from edbentley/audiowaveform 2020-12-11 07:03:57 +01:00
Ed Bentley 0823dcedc3 audiowaveform: init at 1.4.2 2020-12-09 10:25:59 +00:00
R. RyanTM 9231ea93ca abcm2ps: 8.14.10 -> 8.14.11 2020-12-08 11:13:39 +00:00
R. RyanTM 04d1ad3220 playerctl: 2.2.1 -> 2.3.1 2020-12-03 06:49:29 +00:00
R. RyanTM 86b91712ef abcmidi: 2020.08.09 -> 2020.11.07 2020-12-01 15:12:22 +00:00
Jörg Thalheim ea48cad85d
Merge pull request #103851 from mweinelt/python/tts 2020-12-01 11:25:51 +00:00
Sandro Jäckel 76ea74b982
volctl: 0.6.3 -> 0.8.0 2020-11-28 02:58:06 +01:00
Sandro a32d9781bd
Merge pull request #105117 from r-ryantm/auto-update/abcm2ps
abcm2ps: 8.14.9 -> 8.14.10
2020-11-28 00:50:16 +01:00
Sandro f66311ae12
Merge pull request #100414 from NickHu/pasystray
pasystray: ayatana appindicators instead of libappindicator
2020-11-27 20:51:07 +01:00
R. RyanTM 4caeb90cd3 abcm2ps: 8.14.9 -> 8.14.10 2020-11-27 07:57:14 +00:00
Martin Weinelt c84ad307e6
tts: init at unstable-2020-06-17 2020-11-15 04:01:15 +01:00
Andreas Rammhold db0fe5c3eb
Merge branch master into staging to fix eval error
This fixes the eval error of the small (and "big"?) NixOS test set that
was fixed in 1088f05 & eba8f542.
2020-10-28 03:03:27 +01:00
R. RyanTM 6ad02be2f1 mpd-mpris: 0.2.4 -> 0.3.0 2020-10-25 22:33:09 +00:00
Jan Tojnar 268f2d1478
volctl: switch to Python 3 2020-10-24 01:18:45 +02:00
Ben Siraphob 683a87dbeb treewide: remove periods from end of package descriptions 2020-10-17 08:22:31 -07:00
Nick Hu 8d8cd8908b
pasystray: ayatana appindicators instead of libappindicator 2020-10-13 16:06:11 +01:00
Patrick Hilhorst f7e390e6d4 treewide: fix redirected urls (run 3)
Related:
 - 9fc5e7e473
 - 593e11fd94
 - 508ae42a0f

Since the last time I ran this script, the Repology API changed, so I had to
adapt the script used in the previous PR. The new API should be more robust, so
overall this is a positive (no more grepping the error messages for our relevant
data but just a nice json structure).

Here's the new script I used:

```sh
curl https://repology.org/api/v1/repository/nix_unstable/problems \
   | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \
   | sort | uniq | tee script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```

I will also add this script to `maintainers/scripts`.
2020-10-02 09:01:35 -07:00
Austin Butler 5d365404ac beets: add extrafiles plugin 2020-09-21 10:33:10 +03:00
Vincent Laporte bd954783b2 liquidsoap: 1.3.4 → 1.4.2 2020-09-07 15:18:31 +02:00
Doron Behar 7efe1cfe51 beets: Fix wavpack mediafile test
Extend mutagen-1.43.patch to include a fix for now supported bitrate of
wavpack files. See
d2fc3b59f7
for upstream's version of the change.
2020-09-01 09:22:03 +03:00
R. RyanTM c5a2f3a514 qastools: 0.22.0 -> 0.23.0 2020-08-31 17:09:48 +02:00
Robert Schütz 7b162ee6e7 abcmidi: 2020.07.28 -> 2020.08.09 2020-08-27 15:16:04 +02:00
Mario Rodas 2ab8def9d4
Merge pull request #95167 from r-ryantm/auto-update/playerctl
playerctl: 2.1.1 -> 2.2.1
2020-08-12 08:53:16 -05:00
R. RyanTM 7ff3f222b6 playerctl: 2.1.1 -> 2.2.1 2020-08-11 10:42:32 +00:00
zowoq cea7cd902e buildGoModule packages: set doCheck = false 2020-08-10 16:02:30 +10:00
Martin Weinelt 131e9edd8b
Merge pull request #94692 from mweinelt/beets
beets: apply patch to fix incompatibilites with python 3.8
2020-08-07 00:48:09 +02:00
Martin Weinelt d55276d7c6
beets: apply patch to fix incompatibilites with python 3.8
https://github.com/beetbox/beets/pull/3621
https://github.com/python/cpython/pull/20649
2020-08-07 00:45:40 +02:00
gnidorah 1ace844415 opn2bankeditor: 1.3-beta -> 1.3 2020-08-06 10:01:18 +03:00
gnidorah 059675cd0d opl3bankeditor: 1.5 -> 1.5.1 2020-08-06 09:53:07 +03:00
R. RyanTM 4814236168
abcmidi: 2020.06.30 -> 2020.07.28 (#94349) 2020-08-01 14:38:21 +02:00
zowoq 3c5750d1cd buildGoModule packages: editorconfig fixes 2020-07-31 13:58:04 +10:00
Fabian Geiselhart 3518436b92 bpm-tools: Specify dependencies and wrap executables 2020-07-12 19:46:21 +02:00
Jonathan Ringer 2e050546b8
google-music-scripts: fix build 2020-07-04 07:42:19 -07:00
R. RyanTM 4b10430119
abcmidi: 2020.06.07 -> 2020.06.30 (#92114) 2020-07-03 09:38:29 +02:00
R. RyanTM 1351ed529d
abcm2ps: 8.14.7 -> 8.14.9 (#91897) 2020-07-01 12:47:57 +02:00
Martin Weinelt a9422ba768 beets: fix werkzeug testcases
Closes #91131
2020-06-20 15:12:57 -07:00
R. RyanTM ee44fed637 video2midi: 0.4.0.1 -> 0.4.0.2 2020-06-15 05:37:35 +00:00
Nicolas Berbiche c539d7c1c7 playerctl: enable bash completions 2020-06-12 22:30:46 -04:00
Doron Behar 01d4e2fe33 treewide: use ffmpeg_3 explicitly if not wanted otherwise
After making `ffmpeg` point to the latest `ffmpeg_4`, all packages that
used `ffmpeg` without requiring a specific version now use ffmpeg_3
explicitly so they shouldn't change.
2020-06-12 11:55:31 -07:00
Robert Schütz 8deeeb0219 abcmidi: 2020.03.25 -> 2020.06.07 2020-06-11 10:11:50 +02:00
Colin L Rice d6162dab50
go-modules: Update files to use vendorSha256 2020-05-14 07:22:21 +01:00
Jaka Hudoklin cf3b322a64 pasystray: add patch to fix crash when running under wayland 2020-04-14 13:18:55 +07:00
Jörg Thalheim d121a3992c
Merge pull request #85045 from r-ryantm/auto-update/pulsemixer
pulsemixer: 1.5.0 -> 1.5.1
2020-04-12 06:36:37 +01:00
R. RyanTM 952335e853 pulsemixer: 1.5.0 -> 1.5.1 2020-04-12 01:42:45 +00:00
Michael Reilly 84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Samuel Leathers 72cb7f81fd
Merge pull request #81442 from manveru/bundler-2.1.4
bundler: 1.17.3 -> 2.1.4
2020-04-08 12:44:54 -04:00
R. RyanTM c3e25ba60f abcmidi: 2020.02.12 -> 2020.03.25 2020-04-06 12:37:53 -07:00
Michael Fellinger f92600b406
update versions in Gemfile.lock 2020-04-06 15:02:13 +02:00
Jonathan Ringer aa1fea9f97 google-music-scripts: 4.0.1 -> 4.3.0 2020-04-02 10:04:28 -07:00
Timo Kaufmann da0fc069c3
Merge pull request #82003 from ymeister/master
alsaequal: init at 0.6
2020-03-31 14:56:56 +00:00
Timo Kaufmann e2c72facec
Merge pull request #83322 from doronbehar/improve-beets-test
pythonPackages.beets: add unconditionally deps needed for checks
2020-03-31 14:43:21 +00:00
Orivej Desh 2f8795d32a qastools: 0.21.0 -> 0.22.0 2020-03-30 21:15:13 +00:00
Orivej Desh ce1695ace7 midicsv: init at 1.1 2020-03-28 14:43:03 +00:00
Jaakko Luttinen 86a012b960
trx: 0.4 -> 0.5 2020-03-28 12:49:50 +02:00
Doron Behar 9c3be05166 beets: Quote homepage url 2020-03-25 15:27:55 +02:00
Doron Behar befbb792b9 pythonPackages.beets: add unconditionally deps needed for checks 2020-03-25 00:21:57 +02:00
José Romildo Malaquias 5071f0b93a volctl: 0.6.2 -> 0.6.3 2020-03-20 12:20:00 -03:00
ymeister a0c9e953c7 maintainers: add ymeister 2020-03-13 13:38:05 +07:00
ymeister 5de1b169ea alsaequal: init at 0.6
Co-Authored-By: Doron Behar <doron.behar@gmail.com>
2020-03-13 13:38:05 +07:00
R. RyanTM ceeaf410be abcmidi: 2019.12.09 -> 2020.02.12 2020-03-05 15:08:03 -08:00
R. RyanTM 890c3191d7 abcm2ps: 8.14.6 -> 8.14.7 2020-02-19 17:40:56 +01:00
gnidorah 4f1d75fd89 mididings: correct version naming 2020-02-15 15:24:24 +01:00
Aluísio Augusto Silva Gonçalves e79af471e7 beets: Fix test to work with mutagen>=1.43 2020-02-14 21:17:38 -08:00
R. RyanTM 18ccb2366a abcmidi: 2019.11.11 -> 2019.12.09 2020-02-09 09:57:17 +01:00
Ryan Mulligan 7b78c8b461
Merge pull request #79332 from r-ryantm/auto-update/mpd-mpris
mpd-mpris: 0.2.3 -> 0.2.4
2020-02-06 16:47:03 -08:00
R. RyanTM c1b0e3ee3e playerctl: 2.0.2 -> 2.1.1 2020-02-06 13:07:04 +00:00
R. RyanTM abef6b21ff mpd-mpris: 0.2.3 -> 0.2.4 2020-02-06 11:01:38 +00:00
R. RyanTM 354bcfeab0 video2midi: 0.3.9.6 -> 0.4.0.1 2020-01-17 12:08:42 +00:00
Robin Gloster f9f46dc327
treewide: NIX_*_FLAGS -> string 2019-12-31 00:15:46 +01:00
Franz Pletz 6d50498b28
trx: 2018-01-23 -> 0.4 2019-12-27 03:50:41 +01:00
José Romildo Malaquias 306c31afed volctl: init at 0.6.2 2019-12-20 16:03:10 +01:00
Bernardo Meurer 171ceb38ff
beets.externalPlugins.check: init at 0.12.0 2019-12-14 21:52:21 -08:00
R. RyanTM d19a8f133b abcmidi: 2019.10.13 -> 2019.11.11 2019-12-07 22:00:13 +01:00
Peter Jones db091af228
mpdris2: use python3 for #74295
Also use fetchFromGitHub for hash stability.

Co-authored-by: worldofpeace <worldofpeace@protonmail.ch>
2019-12-04 08:19:56 -07:00
R. RyanTM d72ec48e63 abcm2ps: 8.14.5 -> 8.14.6 2019-11-25 00:02:22 -08:00
John Ericson d0d5136cce Merge remote-tracking branch 'upstream/master' into wrapper-pname-support 2019-11-24 17:25:07 +00:00
John Ericson 9b090ccbca treewide: Get rid of most parseDrvName without breaking compat
That is because this commit should be merged to both master and
release-19.09.
2019-11-24 17:22:28 +00:00
Bernardo Meurer 82b0f7432e
beets: fix absubmit deps 2019-11-17 22:33:26 -08:00
Bernardo Meurer e7fea062ce
essentia-extractor: init at 2.1_beta2 2019-11-17 20:17:44 -08:00
markuskowa 1395327b4e
Merge pull request #72444 from r-ryantm/auto-update/abcMIDI
abcmidi: 2019.08.11 -> 2019.10.13
2019-11-12 10:05:32 +01:00
gnidorah 7a17d2df56 video2midi: 0.3.9.5 -> 0.3.9.6 2019-11-04 08:54:02 -08:00
R. RyanTM 7cc5913d0d abcmidi: 2019.08.11 -> 2019.10.13 2019-11-01 08:26:29 -07:00
Doron Behar 7ff17ce730 bpm-tools: init at 0.3 2019-10-05 00:23:06 +02:00
derchris dd63381444 video2midi: 0.3.9.1 > 0.3.9.5 2019-10-03 08:57:06 -07:00
Bruno Bigras 239aafea69 beets: 1.4.7 -> 1.4.9 2019-09-23 00:23:56 -04:00
volth 7b8fb5c06c treewide: remove redundant quotes 2019-09-08 23:38:31 +00:00
Jan Tojnar cdf426488b
Merge branch 'master' into staging-next
Fixed trivial conflicts caused by removing rec.
2019-09-06 03:20:09 +02:00
Marek Mahut 4622046a2f
Merge pull request #68104 from peterhoeg/f/aucdtect
aucdtect: pname was wrong
2019-09-04 21:23:42 +02:00
Peter Hoeg dfea236a48 aucdtect: pname was wrong 2019-09-04 21:21:09 +08:00
Vladimír Čunát 4aad2947f8
Merge branch 'master' into staging-next 2019-09-04 11:00:56 +02:00
worldofpeace 59e68d3b74 treewide: don't use single quotes with placeholder 2019-09-03 13:01:42 -04:00
volth 08f68313a4 treewide: remove redundant rec 2019-08-28 11:07:32 +00:00
Vladimír Čunát 2e6bf42a22
Merge branch 'master' into staging-next
There ver very many conflicts, basically all due to
name -> pname+version.  Fortunately, almost everything was auto-resolved
by kdiff3, and for now I just fixed up a couple evaluation problems,
as verified by the tarball job.  There might be some fallback to these
conflicts, but I believe it should be minimal.

Hydra nixpkgs: ?compare=1538299
2019-08-24 08:55:37 +02:00
gnidorah bbf1f5cfd0 opl3bankeditor, opn2bankeditor: use qt5's mkDerivation 2019-08-19 08:04:51 +02:00
Frederik Rietdijk f65aa21bb2 Merge master into staging-next 2019-08-18 12:53:44 +02:00
R. RyanTM cfdd3799a2 abcmidi: 2019.08.02 -> 2019.08.11
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/abcmidi/versions
2019-08-17 10:47:35 -07:00
volth c814d72b51 treewide: name -> pname 2019-08-17 10:54:38 +00:00
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
Marek Mahut f93da326ab
Merge pull request #65051 from r-ryantm/auto-update/abcm2ps
abcm2ps: 8.14.4 -> 8.14.5
2019-08-10 09:40:56 +02:00
Marek Mahut 1ad2edd743 abcmidi: 2019.07.12 -> 2019.08.02 2019-08-10 09:20:57 +02:00
R. RyanTM 49d443efd9 abcmidi: 2019.06.14 -> 2019.07.12
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/abcmidi/versions
2019-08-03 14:41:05 -07:00
Frederik Rietdijk cca5ee9c07 Merge staging-next into staging 2019-07-28 09:10:03 +02:00
Doron Behar a3ae2dbd19 mpd-mpris: init at 0.2.3 (#65340) 2019-07-27 23:30:50 -07:00
worldofpeace b1bc0645ea gdk-pixbuf: rename from gdk_pixbuf 2019-07-22 18:50:57 -04:00
gnidorah 895eea2f3d video2midi: 0.3.7 -> 0.3.9.1 2019-07-20 08:52:22 +03:00
R. RyanTM d831803eec abcm2ps: 8.14.4 -> 8.14.5
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/abcm2ps/versions
2019-07-18 22:01:54 -07:00
Ryan Mulligan 508ae42a0f treewide: fix redirect URLs 2019-07-10 12:52:51 -07:00
Frederik Rietdijk c62f181eb5
Merge pull request #63207 from gnidorah/mididings
mididings: init at 20151117
2019-07-10 12:44:02 +02:00
Jake Waksbaum 2e729e7f1f
google-music-scripts: fix build 2019-07-04 01:43:53 -07:00
R. RyanTM 57a2724672 abcmidi: 2019.06.06 -> 2019.06.14
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/abcmidi/versions
2019-07-03 09:31:00 +02:00
Linus Heckemann bd286ce6e5
Merge pull request #61826 from gnidorah/video2midi
video2midi: init at 0.3.7
2019-06-23 10:00:50 +02:00
volth f3282c8d1e treewide: remove unused variables (#63177)
* treewide: remove unused variables

* making ofborg happy
2019-06-16 19:59:05 +00:00
R. RyanTM ad2a9cdd8f abcmidi: 2019.04.22 -> 2019.06.06
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/abcmidi/versions
2019-06-16 19:49:06 +02:00
gnidorah de8ad1f55b mididings: init at 20151117 2019-06-16 15:58:16 +03:00
gnidorah 1dc8c13757 video2midi: init at 0.3.7 2019-06-07 08:20:01 +03:00
Vladyslav M f77faebc71
pulsemixer: 1.4.0 -> 1.5.0 2019-06-02 16:12:44 +03:00
Michael Reilly 9e9996ad1a mp3cat init at 0.5
Adding package mp3cat, a command line mp3 utility which will concatenate
multiple mp3 files, and keep only the audio frames, discarding headers
and so on.
2019-05-12 07:00:50 -04:00
Michael Fellinger 094b713ccd mpdcron: 20130809 -> 20161228 2019-05-03 14:16:11 +02:00
Frederik Rietdijk fd2bd6e433
Merge staging-next into master 2019-04-30 15:50:24 +02:00
Robert Schütz ff26a24998 abcmidi: 2019.03.30 -> 2019.04.22 2019-04-30 14:09:58 +02:00
worldofpeace 7abeda982a gnome3.gsettings-desktop-schemas -> gsettings-desktop-schemas
gnome3.pomodoro is left out because I don't want to create a conflict.
2019-04-17 13:39:23 -04:00
Vladyslav M 203d0ff1c8
Merge pull request #58751 from r-ryantm/auto-update/playerctl
playerctl: 2.0.1 -> 2.0.2
2019-04-06 23:17:49 +03:00
Robert Schütz bf95e6530a abcmidi: 2019.02.08 -> 2019.03.30 2019-04-03 14:57:12 +02:00
R. RyanTM d5f0c92adf playerctl: 2.0.1 -> 2.0.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/playerctl/versions
2019-04-02 01:28:54 -07:00
Ryan Mulligan 4d160c3f09
Merge pull request #57486 from canndrew/picotts
picotts: init at 2018-10-19
2019-04-01 19:53:11 -07:00
Andrew Cann 419d38f774 picotts: init at 2018-10-19 2019-03-31 14:06:23 +08:00
Ryan Mulligan 024fd0238c
Merge pull request #57976 from gnidorah/opl3bankeditor
opl3bankeditor: 2019-01-12 -> 1.5
2019-03-26 19:05:13 -07:00
volth 2be90ccb4f gnome3.gtk -> gtk3
fix evaluation when config.allowAliases == false

(regression after #55735)
2019-03-24 14:34:39 -04:00
gnidorah 47dc3051d8 opl3bankeditor: 2019-01-12 -> 1.5 2019-03-20 20:10:45 +03:00
Robert Schütz 9b202b6f3d abcm2ps: 8.14.3 -> 8.14.4 2019-03-18 14:03:26 +01:00
Robert Schütz 12d625f119 google-music-scripts: 3.0.0 -> 4.0.1 2019-03-15 20:17:45 +01:00
Robert Schütz be5fe39a01 abcm2ps: 8.14.2 -> 8.14.3 2019-03-15 10:39:21 +01:00
Frederik Rietdijk 2fcb11a244 Merge staging-next into master 2019-03-01 09:06:20 +01:00
Jörg Thalheim dadc7eb329
treewide: use runtimeShell instead of stdenv.shell whenever possible
Whenever we create scripts that are installed to $out, we must use runtimeShell
in order to get the shell that can be executed on the machine we create the
package for. This is relevant for cross-compiling. The only use case for
stdenv.shell are scripts that are executed as part of the build system.
Usages in checkPhase are borderline however to decrease the likelyhood
of people copying the wrong examples, I decided to use runtimeShell as well.
2019-02-26 14:10:49 +00:00
Jean-Philippe Braun 98d8bf4bea mpdris2: 0.7 -> 0.8 (#56287) 2019-02-25 00:43:12 +01:00
Vladimír Čunát 71f4ba29a3
Merge branch 'master' into staging-next
Hydra nixpkgs: ?compare=1506218
2019-02-22 17:51:01 +01:00
Robert Schütz 255f67e50f abcmidi: 2019.01.01 -> 2019.02.08 2019-02-21 14:18:22 +01:00
Robert Schütz 5124cf7a14 beets: use checkInputs 2019-02-20 20:07:21 +01:00