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
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, libjack2, libGL, pkgconfig, xorg, mesa, libsndfile, libsamplerate }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ninjas2";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "clearly-broken-software";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1kwp6pmnfar2ip9693gprfbcfscklgri1k1ycimxzlqr61nkd2k9";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
patchPhase = ''
|
|
patchShebangs dpf/utils/generate-ttl.sh
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
libjack2 xorg.libX11 libGL mesa libsndfile libsamplerate
|
|
];
|
|
|
|
installPhase = ''
|
|
install -dD bin/ninjas2.lv2 $out/lib/lv2/ninjas2.lv2
|
|
install -D bin/ninjas2-vst.so $out/lib/vst/ninjas2-vst.so
|
|
install -D bin/ninjas2 $out/bin/ninjas2
|
|
'';
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/clearly-broken-software/ninjas2";
|
|
description = "sample slicer plugin for LV2, VST, and jack standalone";
|
|
license = with licenses; [ gpl3 ];
|
|
maintainers = [ maintainers.magnetophon ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|