mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +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.
61 lines
1.9 KiB
Nix
61 lines
1.9 KiB
Nix
{ lib, stdenv, fetchurl, alsa-lib, libjack2, pkg-config, libpulseaudio, xorg, copyDesktopItems, makeDesktopItem }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bristol";
|
|
version = "0.60.11";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/bristol/${pname}-${version}.tar.gz";
|
|
sha256 = "1fi2m4gmvxdi260821y09lxsimq82yv4k5bbgk3kyc3x1nyhn7vx";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config copyDesktopItems ];
|
|
buildInputs = [
|
|
alsa-lib
|
|
libjack2
|
|
libpulseaudio
|
|
xorg.libX11
|
|
xorg.libXext
|
|
xorg.xorgproto
|
|
];
|
|
|
|
patchPhase = "sed -i '41,43d' libbristolaudio/audioEngineJack.c"; # disable alsa/iatomic
|
|
|
|
configurePhase = "./configure --prefix=$out --enable-jack-default-audio --enable-jack-default-midi";
|
|
|
|
# Workaround build failure on -fno-common toolchains like upstream
|
|
# gcc-10. Otherwise build fails as:
|
|
# ld: brightonCLI.o:/build/bristol-0.60.11/brighton/brightonCLI.c:139: multiple definition of
|
|
# `event'; brightonMixerMenu.o:/build/bristol-0.60.11/brighton/brightonMixerMenu.c:1182: first defined here
|
|
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
|
|
|
preInstall = ''
|
|
sed -e "s@\`which bristol\`@$out/bin/bristol@g" -i bin/startBristol
|
|
sed -e "s@\`which brighton\`@$out/bin/brighton@g" -i bin/startBristol
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/icons/hicolor/scalable/apps/
|
|
ln -s $out/share/bristol/bitmaps/bicon.svg $out/share/icons/hicolor/scalable/apps/
|
|
'';
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "Bristol";
|
|
exec = "bristol";
|
|
icon = "bicon";
|
|
desktopName = "Bristol";
|
|
comment = "Graphical user interface for the Bristol synthesizer emulator";
|
|
categories = [ "AudioVideo" ];
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Range of synthesiser, electric piano and organ emulations";
|
|
homepage = "https://bristol.sourceforge.net";
|
|
license = licenses.gpl3;
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
maintainers = [ ];
|
|
};
|
|
}
|