mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +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/'
33 lines
724 B
Nix
33 lines
724 B
Nix
{ lib
|
|
, fetchurl
|
|
, stdenv
|
|
, undmg
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pika";
|
|
version = "0.0.12";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/superhighfives/${pname}/releases/download/${version}/Pika-${version}.dmg";
|
|
sha256 = "sha256-hcP2bETEx9RQW43I9nvdRPi9lbWwKW6mhRx5H6RxhjM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ undmg ];
|
|
|
|
sourceRoot = "Pika.app";
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/Applications/Pika.app"
|
|
cp -R . "$out/Applications/Pika.app"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://superhighfives.com/pika";
|
|
description = "Open-source colour picker app for macOS";
|
|
platforms = platforms.darwin;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ arkivm ];
|
|
};
|
|
}
|