forked from mirrors/nixpkgs
ardour: fix source using a copy
svn path=/nixpkgs/trunk/; revision=17339
This commit is contained in:
parent
63dce1ab5c
commit
1d7de3605f
|
@ -1,9 +1,16 @@
|
||||||
args: with args;
|
args: with args;
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
|
|
||||||
name = "ardour-2.8.2";
|
name = "ardour-2.8.2";
|
||||||
|
|
||||||
# svn is the source to get official releases from their site.. :-(
|
# svn is the source to get official releases from their site?
|
||||||
src = /tmp/ardour-2.8.2.tar.bz2;
|
# alternative: wget --data-urlencode 'key=7c4b2e1df903aae5ff5cc4077cda801e' http://ardour.org/downloader
|
||||||
|
# but hash is changing ?
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://mawercer.de/~nix/ardour-2.8.2.tar.bz2;
|
||||||
|
sha256 = "1igwv1r6rlybdac24qady5asaf34f9k7kawkkgyvsifhl984m735";
|
||||||
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
scons boost
|
scons boost
|
||||||
|
|
Loading…
Reference in a new issue