Skip to content

Commit

Permalink
openmpt123: Add libsndfile and flac as dependencies (#19904)
Browse files Browse the repository at this point in the history
  • Loading branch information
hce authored and fpletz committed Oct 29, 2016
1 parent b1d3998 commit fa4167c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/audio/openmpt123/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, SDL2, pkgconfig }:
{ stdenv, fetchurl, SDL2, pkgconfig, flac, libsndfile }:

let
version = "0.2.7025-beta20.1";
Expand All @@ -8,7 +8,7 @@ in stdenv.mkDerivation rec {
url = "https://lib.openmpt.org/files/libopenmpt/src/libopenmpt-${version}.tar.gz";
sha256 = "0qp2nnz6pnl1d7yv9hcjyim7q6yax5881k1jxm8jfgjqagmz5k6p";
};
buildInputs = [ SDL2 pkgconfig ];
buildInputs = [ SDL2 pkgconfig flac libsndfile ];
makeFlags = [ "NO_LTDL=1 TEST=0 EXAMPLES=0" ]
++ stdenv.lib.optional (stdenv.isDarwin) "SHARED_SONAME=0";
installFlags = "PREFIX=\${out}";
Expand Down

0 comments on commit fa4167c

Please sign in to comment.