nixpkgs/pkgs/development/libraries/sphinxbase/default.nix

40 lines
886 B
Nix
Raw Normal View History

{ lib, stdenv
, fetchurl
, bison
, pkg-config
2016-12-28 03:28:07 +00:00
, python27 # >= 2.6
, swig2 # 2.0
, multipleOutputs ? false #Uses incomplete features of nix!
}:
stdenv.mkDerivation (rec {
2016-12-28 03:28:07 +00:00
name = "sphinxbase-5prealpha";
src = fetchurl {
url = "mirror://sourceforge/cmusphinx/${name}.tar.gz";
2016-12-28 03:28:07 +00:00
sha256 = "0vr4k8pv5a8nvq9yja7kl13b5lh0f9vha8fc8znqnm8bwmcxnazp";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ swig2 python27 bison ];
meta = {
description = "Support Library for Pocketsphinx";
homepage = "http://cmusphinx.sourceforge.net";
license = lib.licenses.bsd2;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ ];
};
2014-09-21 19:21:34 +00:00
} // (lib.optionalAttrs multipleOutputs {
outputs = [ "out" "lib" "headers" ];
postInstall = ''
mkdir -p $lib
cp -av $out/lib* $lib
mkdir -p $headers
cp -av $out/include $headers
'';
}))