biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / tableplus / default.nix
blob542a3c6000f259ec2ec7b9cabd93968795587c3a
1 { lib
2 , fetchurl
3 , _7zz
4 , stdenv
5 }:
7 stdenv.mkDerivation (finalAttrs: {
8   pname = "tableplus";
9   version = "538";
10   src = fetchurl {
11     url = "https://download.tableplus.com/macos/${finalAttrs.version}/TablePlus.dmg";
12     hash = "sha256-db3dvjEzkqWrEO+lXyImk0cVBkh8MnCwHOYKIg+kRC4=";
13   };
15   sourceRoot = "TablePlus.app";
17   nativeBuildInputs = [ _7zz ];
19   installPhase = ''
20     runHook preInstall
22     mkdir -p "$out/Applications/TablePlus.app"
23     cp -R . "$out/Applications/TablePlus.app"
24     mkdir "$out/bin"
25     ln -s "$out/Applications/TablePlus.app/Contents/MacOS/TablePlus" "$out/bin/${finalAttrs.pname}"
27     runHook postInstall
28   '';
30   meta = with lib; {
31     description = "Database management made easy";
32     homepage = "https://tableplus.com";
33     license = licenses.unfree;
34     maintainers = with maintainers; [ yamashitax ];
35     platforms = platforms.darwin;
36   };