Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 40 lines 776 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 xorg, 6 xorgproto, 7 cairo, 8 lv2, 9 pkg-config, 10}: 11 12stdenv.mkDerivation rec { 13 pname = "MelMatchEQ.lv2"; 14 version = "0.1"; 15 16 src = fetchFromGitHub { 17 owner = "brummer10"; 18 repo = pname; 19 rev = "v${version}"; 20 sha256 = "1s805jgb9msxfq9047s7pxrngizb00w8sm4z94iii80ba65rd20x"; 21 }; 22 23 nativeBuildInputs = [ pkg-config ]; 24 buildInputs = [ 25 xorg.libX11 26 xorgproto 27 cairo 28 lv2 29 ]; 30 31 installFlags = [ "INSTALL_DIR=$(out)/lib/lv2" ]; 32 33 meta = with lib; { 34 homepage = "https://github.com/brummer10/MelMatchEQ.lv2"; 35 description = "Profiling EQ using a 26 step Mel Frequency Band"; 36 maintainers = with maintainers; [ magnetophon ]; 37 license = licenses.gpl2Plus; 38 platforms = platforms.linux; 39 }; 40}