mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
bluesnooze: init at 1.2
This commit is contained in:
parent
cf7fcaf4d9
commit
52d385c37a
1 changed files with 40 additions and 0 deletions
40
pkgs/by-name/bl/bluesnooze/package.nix
Normal file
40
pkgs/by-name/bl/bluesnooze/package.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
fetchurl,
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
unzip,
|
||||||
|
}:
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "bluesnooze";
|
||||||
|
version = "1.2";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/odlp/bluesnooze/releases/download/v${finalAttrs.version}/Bluesnooze.zip";
|
||||||
|
hash = "sha256-B1qLfPj2bU9AAsYqGYWl0/sEPj3wnn/UBeiM4kqW/rA=";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Needed to avoid the binary becoming corrupted and mac refusing to open it. I
|
||||||
|
# don't know why.
|
||||||
|
dontFixup = true;
|
||||||
|
|
||||||
|
# "unpack" phase does the unzipping automatically
|
||||||
|
nativeBuildInputs = [ unzip ];
|
||||||
|
sourceRoot = "."; # squash "unpacker produced multiple directories" error
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
mkdir -p "$out/Applications"
|
||||||
|
cp -r Bluesnooze.app $out/Applications/
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Bluesnooze prevents your sleeping Mac from connecting to Bluetooth accessories";
|
||||||
|
homepage = "https://github.com/odlp/bluesnooze";
|
||||||
|
changelog = "https://github.com/odlp/bluesnooze/releases/tag/v${finalAttrs.version}";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ craigf ];
|
||||||
|
platforms = lib.platforms.darwin;
|
||||||
|
};
|
||||||
|
})
|
Loading…
Add table
Add a link
Reference in a new issue