mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ stdenv, fetchurl, unzip, alsaLib, libX11, libXi, SDL2 }:
|
|
|
|
let
|
|
libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.cc alsaLib libX11 libXi SDL2 ];
|
|
arch =
|
|
if stdenv.isAarch64
|
|
then "arm64"
|
|
else if stdenv.isAarch32
|
|
then "arm_armhf_raspberry_pi"
|
|
else if stdenv.is64bit
|
|
then "x86_64"
|
|
else "x86";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "SunVox";
|
|
version = "1.9.5d";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.warmplace.ru/soft/sunvox/sunvox-${version}.zip";
|
|
sha256 = "04f7psm0lvc09nw7d2wp0sncf37bym2v7hhxp4v8c8gdgayj7k8m";
|
|
};
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
unpackPhase = "unzip $src";
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share $out/bin
|
|
mv sunvox $out/share/
|
|
|
|
bin="$out/share/sunvox/sunvox/linux_${arch}/sunvox"
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath "${libPath}" \
|
|
"$bin"
|
|
|
|
ln -s "$bin" $out/bin/sunvox
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Small, fast and powerful modular synthesizer with pattern-based sequencer";
|
|
license = licenses.unfreeRedistributable;
|
|
homepage = "http://www.warmplace.ru/soft/sunvox/";
|
|
maintainers = with maintainers; [ puffnfresh ];
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
};
|
|
}
|