remove 'overlay' folder

This commit is contained in:
fleaz 2023-10-04 23:10:11 +02:00
parent df65b08cd5
commit d35e3658b8
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083
2 changed files with 0 additions and 44 deletions

View file

@ -1,4 +0,0 @@
self: super: {
studio-link = super.callPackage ./studio-link.nix { };
}

View file

@ -1,40 +0,0 @@
{ stdenv
, lib
, fetchurl
, pulseaudio
, zlib
, alsaLib
, autoPatchelfHook
}:
stdenv.mkDerivation rec {
pname = "studio-link";
version = "21.07.0";
src = fetchurl {
url = "https://download.studio.link/releases/v${version}-stable/linux/studio-link-standalone-v${version}.tar.gz";
hash = "sha256-4CkijAlenhht8tyk3nBULaBPE0GBf6DVII699/RmmWI=";
};
sourceRoot = ".";
nativeBuildInputs = [
autoPatchelfHook
];
buildInputs = [
alsaLib
pulseaudio
zlib
];
installPhase = ''
install -D -m755 studio-link-standalone-v* $out/bin/studio-link
'';
meta = with lib; {
homepage = "https://studio-link.com";
description = "VoIP Thing";
platforms = platforms.linux;
};
}