mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
sphinxbase: update from 0.7 to 0.8
This commit is contained in:
parent
c8ba9e285a
commit
f63444abde
|
@ -6,11 +6,11 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation (rec {
|
stdenv.mkDerivation (rec {
|
||||||
name = "sphinxbase-0.7";
|
name = "sphinxbase-0.8";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/cmusphinx/${name}.tar.gz";
|
url = "mirror://sourceforge/cmusphinx/${name}.tar.gz";
|
||||||
sha256 = "1v3kfzw42ahxmr002i6wqigs832958vgghrv5dd62zazajdbk71q";
|
sha256 = "1a3c91g6rcfb2k8qyfhnd7s68ds6pxwv61xfp0ai1arbhx28jw2m";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig bison ];
|
buildInputs = [ pkgconfig bison ];
|
||||||
|
@ -18,8 +18,11 @@ stdenv.mkDerivation (rec {
|
||||||
meta = {
|
meta = {
|
||||||
description = "Support Library for Pocketsphinx";
|
description = "Support Library for Pocketsphinx";
|
||||||
homepage = http://cmusphinx.sourceforge.net;
|
homepage = http://cmusphinx.sourceforge.net;
|
||||||
license = "free-non-copyleft";
|
license = stdenv.lib.licenses.bsd2;
|
||||||
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
||||||
};
|
};
|
||||||
|
|
||||||
} // (stdenv.lib.optionalAttrs multipleOutputs {
|
} // (stdenv.lib.optionalAttrs multipleOutputs {
|
||||||
outputs = [ "out" "lib" "headers" ];
|
outputs = [ "out" "lib" "headers" ];
|
||||||
|
|
||||||
|
@ -31,4 +34,3 @@ stdenv.mkDerivation (rec {
|
||||||
cp -av $out/include $headers
|
cp -av $out/include $headers
|
||||||
'';
|
'';
|
||||||
}))
|
}))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue