mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
38 lines
884 B
Nix
38 lines
884 B
Nix
{ lib
|
|
, fetchurl
|
|
, _7zz
|
|
, stdenv
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "tableplus";
|
|
version = "538";
|
|
src = fetchurl {
|
|
url = "https://download.tableplus.com/macos/${finalAttrs.version}/TablePlus.dmg";
|
|
hash = "sha256-db3dvjEzkqWrEO+lXyImk0cVBkh8MnCwHOYKIg+kRC4=";
|
|
};
|
|
|
|
sourceRoot = "TablePlus.app";
|
|
|
|
nativeBuildInputs = [ _7zz ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out/Applications/TablePlus.app"
|
|
cp -R . "$out/Applications/TablePlus.app"
|
|
mkdir "$out/bin"
|
|
ln -s "$out/Applications/TablePlus.app/Contents/MacOS/TablePlus" "$out/bin/${finalAttrs.pname}"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Database management made easy";
|
|
homepage = "https://tableplus.com";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ yamashitax ];
|
|
platforms = platforms.darwin;
|
|
};
|
|
})
|