parent
b9de32de5b
commit
50e9fa5719
@ -16,6 +16,7 @@
|
|||||||
amiddelk = "Arie Middelkoop <amiddelk@gmail.com>";
|
amiddelk = "Arie Middelkoop <amiddelk@gmail.com>";
|
||||||
amorsillo = "Andrew Morsillo <andrew.morsillo@gmail.com>";
|
amorsillo = "Andrew Morsillo <andrew.morsillo@gmail.com>";
|
||||||
AndersonTorres = "Anderson Torres <torres.anderson.85@gmail.com>";
|
AndersonTorres = "Anderson Torres <torres.anderson.85@gmail.com>";
|
||||||
|
anderspapitto = "Anders Papitto <anderspapitto@gmail.com>";
|
||||||
andres = "Andres Loeh <ksnixos@andres-loeh.de>";
|
andres = "Andres Loeh <ksnixos@andres-loeh.de>";
|
||||||
antono = "Antono Vasiljev <self@antono.info>";
|
antono = "Antono Vasiljev <self@antono.info>";
|
||||||
ardumont = "Antoine R. Dumont <eniotna.t@gmail.com>";
|
ardumont = "Antoine R. Dumont <eniotna.t@gmail.com>";
|
||||||
|
@ -9,13 +9,21 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1shbyp54q64g6bsl6hhch58k3z1dyyy9ph6cq2xvdf8syy00sisz";
|
sha256 = "1shbyp54q64g6bsl6hhch58k3z1dyyy9ph6cq2xvdf8syy00sisz";
|
||||||
};
|
};
|
||||||
buildInputs = [ libsndfile libsamplerate liblo jack2 ];
|
buildInputs = [ libsndfile libsamplerate liblo jack2 ];
|
||||||
|
postPatch = ''
|
||||||
|
sed -i "s|./samples|$out/share/dirt/samples|" file.h
|
||||||
|
'';
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
export DESTDIR=$out
|
export DESTDIR=$out
|
||||||
'';
|
'';
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/share/dirt/
|
||||||
|
cp -r samples $out/share/dirt/
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "An unimpressive thingie for playing bits of samples with some level of accuracy";
|
description = "An unimpressive thingie for playing bits of samples with some level of accuracy";
|
||||||
homepage = "https://github.com/tidalcycles/Dirt";
|
homepage = "https://github.com/tidalcycles/Dirt";
|
||||||
license = stdenv.lib.licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ anderspapitto ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user