nixpkgs/pkgs/applications/graphics/pika/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
724 B
Nix
Raw Normal View History

2022-06-27 03:52:38 +00:00
{ 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 ];
};
}