mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
31 lines
788 B
Nix
31 lines
788 B
Nix
{ lib, stdenv, fetchFromGitHub, Carbon, Cocoa, ScriptingBridge, SkyLight }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "spacebar";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cmacrae";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-4LiG43kPZtsm7SQ/28RaGMpYsDshCaGvc1mouPG3jFM=";
|
|
};
|
|
|
|
buildInputs = [ Carbon Cocoa ScriptingBridge SkyLight ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/share/man/man1/
|
|
cp ./bin/spacebar $out/bin/spacebar
|
|
cp ./doc/spacebar.1 $out/share/man/man1/spacebar.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Minimal status bar for macOS";
|
|
homepage = "https://github.com/cmacrae/spacebar";
|
|
platforms = platforms.darwin;
|
|
maintainers = [ maintainers.cmacrae ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|