nixpkgs/pkgs/os-specific/darwin/apparency/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

45 lines
1.1 KiB
Nix

{ lib
, fetchurl
, stdenv
, undmg
}:
let
snapshot = "20240601172844";
in
stdenv.mkDerivation {
pname = "apparency";
version = "2.0";
src = fetchurl {
# Use externally archived download URL because
# upstream does not provide stable URLs for versioned releases
url = "https://web.archive.org/web/${snapshot}/https://www.mothersruin.com/software/downloads/Apparency.dmg";
hash = "sha256-XKxWxqfxy9AQneILLrN9XqLt4/k2N8yumZ5mrSvczFk=";
};
nativeBuildInputs = [ undmg ];
sourceRoot = "Apparency.app";
installPhase = ''
runHook preInstall
mkdir -p $out/Applications/Apparency.app $out/bin
cp -R . $out/Applications/Apparency.app
ln -s ../Applications/Apparency.app/Contents/MacOS/appy $out/bin
runHook postInstall
'';
meta = {
description = "App That Opens Apps";
homepage = "https://www.mothersruin.com/software/Apparency/";
license = lib.licenses.unfreeRedistributable;
maintainers = [ ];
mainProgram = "appy";
platforms = lib.platforms.darwin;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
}