Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 756fcf6ac4c6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2d96b9a2942d
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 17, 2018

  1. liquidsoap: make it find ladspa plugins (#49891)

    * liquidsoap: make it find ladspa plugins
    
    * liquidsoap: cleanup
    Moved makeWrapper and pkgconfig to nativeBuildInputs
    Refreshed meta.homepage
    magnetophon authored and c0bw3b committed Nov 17, 2018
    Copy the full SHA
    2d96b9a View commit details
Showing with 8 additions and 3 deletions.
  1. +8 −3 pkgs/tools/audio/liquidsoap/full.nix
11 changes: 8 additions & 3 deletions pkgs/tools/audio/liquidsoap/full.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, which, pkgconfig
{ stdenv, makeWrapper, fetchurl, which, pkgconfig
, ocamlPackages
, libao, portaudio, alsaLib, libpulseaudio, libjack2
, libsamplerate, libmad, taglib, lame, libogg
@@ -31,10 +31,15 @@ stdenv.mkDerivation {
sed ${toString packageFilters} PACKAGES.default > PACKAGES
'';

postFixup = ''
wrapProgram $out/bin/liquidsoap --set LIQ_LADSPA_PATH /run/current-system/sw/lib/ladspa
'';

configureFlags = [ "--localstatedir=/var" ];

nativeBuildInputs = [ makeWrapper pkgconfig ];
buildInputs =
[ which ocamlPackages.ocaml ocamlPackages.findlib pkgconfig
[ which ocamlPackages.ocaml ocamlPackages.findlib
libao portaudio alsaLib libpulseaudio libjack2
libsamplerate libmad taglib lame libogg
libvorbis speex libtheora libopus fdk_aac
@@ -47,7 +52,7 @@ stdenv.mkDerivation {

meta = with stdenv.lib; {
description = "Swiss-army knife for multimedia streaming";
homepage = http://liquidsoap.fm/;
homepage = https://www.liquidsoap.info/;
maintainers = with maintainers; [ ehmry ];
license = licenses.gpl2;
platforms = ocamlPackages.ocaml.meta.platforms or [];