chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / os-specific / darwin / shortcat / default.nix
blobe67e230a46b94701eab20513c2afd1d4f76d14bd
1 { lib, stdenv, fetchurl, unzip, ... }:
3 stdenv.mkDerivation rec {
4   pname = "shortcat";
5   version = "0.11.4";
7   src = fetchurl {
8     url = "https://files.shortcat.app/releases/v${version}/Shortcat.zip";
9     sha256 = "sha256-0uhAGU5y98oOLAlM7Uu4dWyK85RfNR5c8z3U7LHi8g8=";
10   };
12   sourceRoot = "Shortcat.app";
14   nativeBuildInputs = [ unzip ];
16   installPhase = ''
17     mkdir -p $out/Applications/Shortcat.app
18     cp -R . $out/Applications/Shortcat.app
19   '';
21   meta = with lib; {
22     description = "Manipulate macOS masterfully, minus the mouse";
23     homepage = "https://shortcat.app/";
24     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
25     platforms = platforms.darwin;
26     maintainers = [ ];
27     license = licenses.unfreeRedistributable;
28   };