apparency: init at 1.5.1
This commit is contained in:
parent
100a1550b0
commit
afd4607cf4
2 changed files with 41 additions and 0 deletions
39
pkgs/os-specific/darwin/apparency/default.nix
Normal file
39
pkgs/os-specific/darwin/apparency/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{ lib
|
||||||
|
, fetchurl
|
||||||
|
, stdenv
|
||||||
|
, undmg
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "apparency";
|
||||||
|
version = "1.5.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://web.archive.org/web/20230815073821/https://www.mothersruin.com/software/downloads/Apparency.dmg";
|
||||||
|
hash = "sha256-JpaBdlt8kTNFzK/yZVZ+ZFJ3DnPQbogJC7QBmtSVkoQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 = "The App That Opens Apps";
|
||||||
|
homepage = "https://www.mothersruin.com/software/Apparency/";
|
||||||
|
license = lib.licenses.unfreeRedistributable;
|
||||||
|
maintainers = with lib.maintainers; [ Enzime ];
|
||||||
|
mainProgram = "appy";
|
||||||
|
platforms = lib.platforms.darwin;
|
||||||
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -27441,6 +27441,8 @@ with pkgs;
|
||||||
alsa-ucm-conf
|
alsa-ucm-conf
|
||||||
alsa-utils;
|
alsa-utils;
|
||||||
|
|
||||||
|
apparency = callPackage ../os-specific/darwin/apparency { };
|
||||||
|
|
||||||
arm-trusted-firmware = callPackage ../misc/arm-trusted-firmware { };
|
arm-trusted-firmware = callPackage ../misc/arm-trusted-firmware { };
|
||||||
inherit (arm-trusted-firmware)
|
inherit (arm-trusted-firmware)
|
||||||
buildArmTrustedFirmware
|
buildArmTrustedFirmware
|
||||||
|
|
Loading…
Reference in a new issue