2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libsndfile, libsamplerate, liblo, libjack2 }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "dirt-2018-01-01";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "Dirt";
|
|
|
|
owner = "tidalcycles";
|
|
|
|
rev = "b09604c7d8e581bc7799d7e2ad293e7cdd254bda";
|
|
|
|
sha256 = "13adglk2d31d7mswfvi02b0rjdhzmsv11cc8smhidmrns3f9s96n";
|
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
buildInputs = [ libsndfile libsamplerate liblo libjack2 ];
|
|
|
|
postPatch = ''
|
|
|
|
sed -i "s|./samples|$out/share/dirt/samples|" dirt.c
|
|
|
|
'';
|
|
|
|
makeFlags = ["PREFIX=$(out)"];
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/dirt/
|
|
|
|
cp -r samples $out/share/dirt/
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "An unimpressive thingie for playing bits of samples with some level of accuracy";
|
|
|
|
homepage = "https://github.com/tidalcycles/Dirt";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ anderspapitto ];
|
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
}
|