toxic: 0.15.1 -> 0.16.0
[NixPkgs.git] / pkgs / by-name / sh / shortcat / package.nix
blobb8022c3fcc7acf2b4fb091529d5756cb5b5b916f
2   lib,
3   stdenv,
4   fetchurl,
5   unzip,
6   ...
7 }:
9 stdenv.mkDerivation rec {
10   pname = "shortcat";
11   version = "0.11.4";
13   src = fetchurl {
14     url = "https://files.shortcat.app/releases/v${version}/Shortcat.zip";
15     sha256 = "sha256-0uhAGU5y98oOLAlM7Uu4dWyK85RfNR5c8z3U7LHi8g8=";
16   };
18   sourceRoot = "Shortcat.app";
20   nativeBuildInputs = [ unzip ];
22   installPhase = ''
23     mkdir -p $out/Applications/Shortcat.app
24     cp -R . $out/Applications/Shortcat.app
25   '';
27   meta = with lib; {
28     description = "Manipulate macOS masterfully, minus the mouse";
29     homepage = "https://shortcat.app/";
30     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
31     platforms = platforms.darwin;
32     maintainers = [ ];
33     license = licenses.unfreeRedistributable;
34   };