nixpkgs/pkgs/servers/ombi/default.nix

56 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, autoPatchelfHook, fixDarwinDylibNames, zlib, krb5, openssl, icu, nixosTests }:
2021-03-29 14:46:01 +00:00
let
os = if stdenv.isDarwin then "osx" else "linux";
arch = {
x86_64-linux = "x64";
aarch64-linux = "arm64";
x86_64-darwin = "x64";
}."${stdenv.hostPlatform.system}" or (throw
"Unsupported system: ${stdenv.hostPlatform.system}");
hash = {
2021-06-27 11:29:59 +00:00
x64-linux_hash = "sha256-LRScuJVI3/657RYZjY9I3rcmANaEaw48CWIYc0VWHs4=";
arm64-linux_hash = "sha256-k0wi8FlVnU60Cnsng6CNNfoP+UItFLj15OxsqAfkO+4=";
x64-osx_hash = "sha256-czcPj+PC4cfJMqYYZyVy1ReO8pqYFUqeV8o/moHuCRw=";
2021-03-29 14:46:01 +00:00
}."${arch}-${os}_hash";
in stdenv.mkDerivation rec {
pname = "ombi";
2021-06-27 11:29:59 +00:00
version = "4.0.1430";
2021-03-29 14:46:01 +00:00
sourceRoot = ".";
src = fetchurl {
url = "https://github.com/Ombi-app/Ombi/releases/download/v${version}/${os}-${arch}.tar.gz";
sha256 = hash;
};
nativeBuildInputs = [ makeWrapper autoPatchelfHook ]
++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
propagatedBuildInputs = [ stdenv.cc.cc zlib krb5 ];
2021-03-29 14:46:01 +00:00
installPhase = ''
mkdir -p $out/{bin,share/${pname}-${version}}
cp -r * $out/share/${pname}-${version}
makeWrapper $out/share/${pname}-${version}/Ombi $out/bin/Ombi \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ openssl icu ]} \
2021-03-29 14:46:01 +00:00
--run "cd $out/share/${pname}-${version}"
'';
passthru = {
updateScript = ./update.sh;
2021-03-29 14:51:53 +00:00
tests.smoke-test = nixosTests.ombi;
2021-03-29 14:46:01 +00:00
};
meta = with lib; {
description = "Self-hosted web application that automatically gives your shared Plex or Emby users the ability to request content by themselves";
homepage = "https://ombi.io/";
license = licenses.gpl2Only;
maintainers = with maintainers; [ woky ];
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
};
}