mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, libsndfile, libsamplerate, liblo, libjack2 }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "dirt";
|
|
version = "unstable-2018-01-01";
|
|
src = fetchFromGitHub {
|
|
repo = "Dirt";
|
|
owner = "tidalcycles";
|
|
rev = "b09604c7d8e581bc7799d7e2ad293e7cdd254bda";
|
|
sha256 = "13adglk2d31d7mswfvi02b0rjdhzmsv11cc8smhidmrns3f9s96n";
|
|
fetchSubmodules = true;
|
|
};
|
|
patches = [
|
|
# Pull patch pending upstream inclusion for upstream gcc-10 support:
|
|
# https://github.com/tidalcycles/Dirt/pull/65
|
|
(fetchpatch {
|
|
name = "fno-common.patch";
|
|
url = "https://github.com/tidalcycles/Dirt/commit/43fd267745d486228c4185b4fcbd7d9fbc362cc2.patch";
|
|
sha256 = "08r34ylzs31wwf0la995pb149ccq0vr7qg4792pkhca57zi0bff8";
|
|
})
|
|
];
|
|
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 = "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;
|
|
mainProgram = "dirt";
|
|
};
|
|
}
|