nixpkgs/pkgs/applications/audio/midas/generic.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, lib, libX11, libXext, alsa-lib, freetype, brand, type, version, homepage, url, sha256, ... }:
2018-05-17 14:30:23 +02:00
stdenv.mkDerivation rec {
2022-03-22 17:57:23 +01:00
pname = "${lib.toLower type}-edit";
inherit version;
2018-05-17 14:30:23 +02:00
src = fetchurl {
2020-11-19 21:54:19 +01:00
inherit url;
2018-05-17 14:30:23 +02:00
inherit sha256;
};
sourceRoot = ".";
dontBuild = true;
dontStrip = true;
installPhase = ''
mkdir -p $out/bin
2022-03-22 17:57:23 +01:00
cp ${pname} $out/bin
2018-05-17 14:30:23 +02:00
'';
preFixup = let
# we prepare our library path in the let clause to avoid it become part of the input of mkDerivation
libPath = lib.makeLibraryPath [
libX11 # libX11.so.6
libXext # libXext.so.6
alsa-lib # libasound.so.2
2018-05-17 14:30:23 +02:00
freetype # libfreetype.so.6
stdenv.cc.cc.lib # libstdc++.so.6
];
in ''
patchelf \
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${libPath}" \
2022-03-22 17:57:23 +01:00
$out/bin/${pname}
2018-05-17 14:30:23 +02:00
'';
meta = with lib; {
2018-05-17 14:30:23 +02:00
inherit homepage;
description = "Editor for the ${brand} ${type} digital mixer";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
2018-05-17 14:30:23 +02:00
license = licenses.unfree;
platforms = platforms.linux;
maintainers = [ maintainers.magnetophon ];
};
}