Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / ma / maccy / package.nix
blob6e3821d7b7cf1fb62a27291c7f2e07a317bb79f0
1 { lib
2 , stdenvNoCC
3 , fetchurl
4 , unzip
5 }:
7 stdenvNoCC.mkDerivation (finalAttrs: {
8   pname = "maccy";
9   version = "0.28.0";
11   src = fetchurl {
12     url = "https://github.com/p0deje/Maccy/releases/download/${finalAttrs.version}/Maccy.app.zip";
13     hash = "sha256-dxjt5skIHN6VlkWpcmj+ZSovVARuQETKoyKMkMtUhHQ=";
14   };
16   dontUnpack = true;
18   nativeBuildInputs = [ unzip ];
20   installPhase = ''
21     runHook preInstall
23     mkdir -p $out/Applications
24     unzip -d $out/Applications $src
26     runHook postInstall
27   '';
29   meta = with lib; {
30     description = "Simple clipboard manager for macOS";
31     homepage = "https://maccy.app";
32     license = licenses.mit;
33     sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
34     maintainers = with maintainers; [ emilytrau ];
35     platforms = platforms.darwin;
36   };