Commit graph

1900 commits

Author SHA1 Message Date
markuskowa 667df74501
Merge pull request #83131 from ck3d/fix-kodi-lirc
kodi: fix lirc support
2020-03-22 21:29:45 +01:00
Christian Kögler 8f12a72488 kodi: fix lirc support
* adapted to the way kodi finds the lircd socket
* added lirc package to build support for lirc
2020-03-22 12:47:25 +01:00
Carles Pagès e28f291d3c
Merge pull request #82317 from dasj19/latest-kodi-15.1
kodi 18.5 -> 18.6
2020-03-20 22:30:25 +01:00
Ryan Mulligan fee1cee0ac
Merge pull request #82940 from r-ryantm/auto-update/obs-studio
obs-studio: 24.0.6 -> 25.0.0
2020-03-19 11:08:57 -07:00
R. RyanTM ccf8d188b3 obs-studio: 24.0.6 -> 25.0.0 2020-03-19 12:55:37 +00:00
Daniel Șerbănescu b6b89f1f0a kodi 18.5 -> 18.6. 2020-03-18 08:12:58 +01:00
Pavol Rusnak 931dd07712 ffmpeg-normalize: init at 1.15.7 2020-03-14 17:47:59 -07:00
Johannes Schleifenbaum aac3717ff4 jellyfin-mpv-shim: init at 1.4.1 2020-03-11 10:55:46 -07:00
R. RyanTM b310986a9e mkvtoolnix: 43.0.0 -> 44.0.0 2020-03-11 05:21:25 +00:00
markuskowa 2100306071
Merge pull request #81756 from r-ryantm/auto-update/clipgrab
clipgrab: 3.8.7 -> 3.8.11
2020-03-07 16:06:18 +01:00
R. RyanTM deb059c390 clipgrab: 3.8.7 -> 3.8.11 2020-03-04 19:47:19 +00:00
Vladyslav M 1080a07165
Merge pull request #81448 from primeos/wf-recorder
wf-recorder: 0.1 -> 0.2
2020-03-02 23:38:28 +02:00
Cole Mickens bd25053298 plex-mpv-shim: init at 1.7.12 2020-03-02 09:49:13 -08:00
Michael Weiss 31f2ff1d61
wf-recorder: 0.1 -> 0.2 2020-03-01 18:33:26 +01:00
Jesse Wattenbarger 8cbb538be5 devede: Add needed setuptools dependency
- devede_ng.py fails trying to import pkg_resources in a clean env w/o python3.7 installed
- Adding setuptools (which has pkg_resources) to the dependencies seems to fix it
2020-02-23 22:27:30 -08:00
worldofpeace 9d82f069da
Merge pull request #80852 from r-ryantm/auto-update/peek
peek: 1.4.0 -> 1.5.1
2020-02-22 20:27:16 -05:00
R. RyanTM 794fc22699 peek: 1.4.0 -> 1.5.1 2020-02-23 01:22:20 +00:00
worldofpeace 7cf8364b16
Merge pull request #80700 from xfix/kodi-build-patch
kodi: fix build
2020-02-22 17:25:51 -05:00
Konrad Borowski 69668e93d8 kodi: fix build 2020-02-22 19:27:43 +01:00
Peter Simons 922648ecb2
Merge pull request #80532 from r-ryantm/auto-update/shotcut
shotcut: 19.12.31 -> 20.02.17
2020-02-21 11:02:04 +01:00
Daiderd Jordan 230ab62e10
Merge pull request #79344 from LnL7/darwin-mpv-swift
mpv: add flag for swift on darwin
2020-02-19 19:14:49 +01:00
R. RyanTM f90c64865f shotcut: 19.12.31 -> 20.02.17 2020-02-19 12:30:17 +00:00
nyanloutre 419d0ad370 jftui: init at 0.2.2 2020-02-16 18:37:56 -08:00
Georg Haas c9ca90af51
bino3d: use mkDerivation from qt
adopted solution from commit 7e0dd3833d
2020-02-13 21:47:08 +01:00
R. RyanTM 1c438a0cd0 catt: 0.10.2 -> 0.10.3 2020-02-10 18:11:15 +01:00
Daniel Schaefer f10e240b86 Merge pull request #72886 from JohnAZoidberg/manim
manim: init at 0.1.10
2020-02-10 10:09:22 +01:00
Daniel Schaefer ff1018a61e Merge pull request #79384 from bbigras/handbrake
handbrake: 1.3.0 -> 1.3.1
2020-02-09 21:19:24 +01:00
R. RyanTM d3302d3763 smtube: 19.6.0 -> 20.1.0 2020-02-09 09:59:16 +01:00
Daiderd Jordan 408f36923d
mpv: call with frameworks
Referencing darwin.* directly makes overriding dependencies very
awkward.
2020-02-07 22:09:23 +01:00
Bruno Bigras 95124a4877 handbrake: 1.3.0 -> 1.3.1 2020-02-07 09:56:40 -05:00
R. RyanTM 58bfcdd0f5 clipgrab: 3.8.6 -> 3.8.7 2020-02-06 20:18:21 +01:00
Daiderd Jordan 3987ea9a9d
mpv: add flag for swift on darwin
While we currently don't have a pure swift build on macOS it's possible
to build mpv using the swift compiler from CLT. eg.

    self: super:
    let
      CommandLineTools = "/Library/Developer/CommandLineTools";
    in
    {
      swift = super.stdenv.mkDerivation {
        name = "swift-CommandLineTools-0.0.0";
        phases = [ "installPhase" "fixupPhase" ];

        propagatedBuildInputs = [ self.darwin.DarwinTools ];

        installPhase = ''
            mkdir -p $out/bin $out/lib
            ln -s ${CommandLineTools}/usr/bin/swift $out/bin
            ln -s ${CommandLineTools}/usr/lib/swift $out/lib
            ln -s ${CommandLineTools}/SDKs $out
        '';

        setupHook = builtins.toFile "hook" ''
            addCommandLineTools() {
                echo >&2
                echo "WARNING: this is impure and unreliable, make sure the CommandLineTools are installed!" >&2
                echo "  $ xcode-select --install" >&2
                echo >&2
                [ -d ${CommandLineTools} ]
                export NIX_LDFLAGS+=" -L@out@/lib/swift/macosx"
                export SWIFT=swift
                export SWIFT_LIB_DYNAMIC=@out@/lib/swift/macosx
                export MACOS_SDK_VERSION=$(sw_vers -productVersion | awk -F. '{print $1 "." $2}')
                export MACOS_SDK=@out@/SDKs/MacOSX$MACOS_SDK_VERSION.sdk
            }

            prePhases+=" addCommandLineTools"
        '';

        __impureHostDeps = [ CommandLineTools ];
      };

      mpv = super.mpv.override { swiftSupport = true; };
    }
2020-02-06 14:15:35 +01:00
Benjamin Hipple 542d758956 mpv: use waf from distribution and wafHook helper
This cleans up our dependency footprint by ensuring a consistent version, and
also avoids duplicating the logic for how to build a waf package by deferring to
the `wafHook` helper for the `configurePhase`, `buildPhase`, and `installPhase`.
2020-02-02 14:11:49 -05:00
Ryan Mulligan 13a4b486b9
Merge pull request #78591 from r-ryantm/auto-update/mediathekview
mediathekview: 13.5.0 -> 13.5.1
2020-01-29 05:36:40 -08:00
Mario Rodas 8252655ab1
Merge pull request #78747 from Enzime/update/mkvtoolnix
mkvtoolnix: 42.0.0 -> 43.0.0
2020-01-29 05:12:31 -05:00
Michael Hoang 7eb1c3e17e mkvtoolnix: 42.0.0 -> 43.0.0 2020-01-29 18:43:03 +11:00
Frederik Rietdijk 7562c2112d
Merge pull request #77739 from NixOS/staging-next
Staging next
2020-01-28 14:03:29 +01:00
Mario Rodas f51149765f
Merge pull request #78668 from Enzime/update/streamlink
streamlink: 1.3.0 -> 1.3.1
2020-01-28 06:50:39 -05:00
Frederik Rietdijk dce0ca29d9 Merge master into staging-next 2020-01-28 10:46:13 +01:00
Michael Hoang 8d25449758 streamlink: 1.3.0 -> 1.3.1 2020-01-28 18:17:42 +11:00
Silvan Mosberger 80a2740991
Merge pull request #78265 from Synthetica9/https-homepages
treewide: fix redirected urls
2020-01-27 15:00:53 +01:00
R. RyanTM 1910648806 mediathekview: 13.5.0 -> 13.5.1 2020-01-27 08:19:25 +00:00
Maximilian Bosch 499af6321f
mpv: 0.31.0 -> 0.32.0
https://github.com/mpv-player/mpv/releases/tag/v0.32.0
2020-01-26 22:32:13 +01:00
Marek Mahut 3c6524c442
Merge pull request #78007 from veprbl/pr/motion_4.3.0
motion: 4.2.2 -> 4.3.0
2020-01-25 23:41:31 +01:00
Graham Christensen ab94e9a83a
Merge pull request #77565 from NilsIrl/wlrobs_2020
obs-wlrobs: 20191008 -> 20200111
2020-01-25 16:09:04 -05:00
Peter Simons fa4416e9bf obs-studio: use the official git repository 2020-01-22 12:55:58 +01:00
Patrick Hilhorst 593e11fd94
treewide: fix redirected urls
According to https://repology.org/repository/nix_unstable/problems, we have a
lot of packages that have http links that redirect to https as their homepage.
This commit updates all these packages to use the https links as their
homepage.

The following script was used to make these updates:

```

curl https://repology.org/api/v1/repository/nix_unstable/problems \
    | jq '.[] | .problem' -r \
    | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \
    | sort | uniq > script.sed

find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```
2020-01-22 11:26:22 +01:00
Peter Simons 1accfe77b7 shotcut: auto-detection of VAAPI rendering is broken again
The 'connection=x11' parameter to ffmpeg breaks hardware
rendering with my Radeon RX 590 card. If we just drop that
option, everything works fine.
2020-01-21 21:55:29 +01:00
Ivan Kozik 76ab11518d treewide: Remove myself from maintainers on some packages (#78027) 2020-01-19 12:18:34 -05:00
Dmitry Kalinkin 115e7e56e5
motion: 4.2.2 -> 4.3.0 2020-01-18 22:34:07 -05:00