mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
openalSoft: nix-expr cleanup
svn path=/nixpkgs/branches/stdenv-updates/; revision=9914
This commit is contained in:
parent
e19b3d7f79
commit
ccb13fd637
|
@ -1,20 +1,17 @@
|
||||||
args:
|
args: with args;
|
||||||
args.stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
#The current release is still in a testing phase, though it should be stable
|
#The current release is still in a testing phase, though it should be stable
|
||||||
# (neither the ABI or API will break). Please try it out and let me know how it
|
# (neither the ABI or API will break). Please try it out and let me know how it
|
||||||
# works. :-)
|
# works. :-)
|
||||||
|
|
||||||
name = "openal-soft-testing";
|
name = "openal-soft-testing";
|
||||||
|
|
||||||
src = args.fetchurl {
|
src = fetchurl {
|
||||||
url = http://kcat.strangesoft.net/OpenAL.tar.bz2?2;
|
url = http://kcat.strangesoft.net/OpenAL.tar.bz2;
|
||||||
sha256 = "7b53c3e6eda1a71010651eb058c71c9b0c86b3c15cae5f0ffeeb7222531aa97d";
|
sha256 = "7b53c3e6eda1a71010651eb058c71c9b0c86b3c15cae5f0ffeeb7222531aa97d";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =(with args; [cmake alsaLib]);
|
buildInputs = [cmake alsaLib];
|
||||||
#phases = "buildPhase installPhase";
|
|
||||||
|
|
||||||
buildPhase = "ensureDir \$out; cmake -DCMAKE_INSTALL_PREFIX:PATH=\$out .; make; make install;";
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "openal alternative";
|
description = "openal alternative";
|
||||||
|
|
Loading…
Reference in a new issue