4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
30 lines
928 B
Nix
30 lines
928 B
Nix
{ lib, stdenv, fetchFromGitHub, libsndfile, libsamplerate, liblo, libjack2 }:
|
|
|
|
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/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
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;
|
|
};
|
|
}
|