feat(pkgs): add pngpaste
This commit is contained in:
parent
50549a4c1e
commit
8cd75579d2
2 changed files with 22 additions and 0 deletions
21
pkgs/pngpaste/default.nix
Normal file
21
pkgs/pngpaste/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ lib, darwin, fetchFromGitHub, ... }:
|
||||
|
||||
darwin.apple_sdk.stdenv.mkDerivation rec {
|
||||
name = "pngpaste";
|
||||
version = "0.2.3";
|
||||
src = fetchFromGitHub {
|
||||
owner = "jcsalterego";
|
||||
repo = "${name}";
|
||||
rev = "67c39829fedb97397b691617f10a68af75cf0867";
|
||||
sha256 = "sha256-uvajxSelk1Wfd5is5kmT2fzDShlufBgC0PDCeabEOSE=";
|
||||
};
|
||||
buildInputs = with darwin.apple_sdk.frameworks; [
|
||||
AppKit
|
||||
Cocoa
|
||||
Foundation
|
||||
];
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mv pngpaste $out/bin/pngpaste
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue