mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
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 ];
|
||
|
};
|
||
|
}
|