mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
|
{
|
||
|
lib,
|
||
|
stdenv,
|
||
|
fetchFromGitHub,
|
||
|
xcbuild,
|
||
|
darwin,
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "choose-gui";
|
||
|
version = "1.3.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "chipsenkbeil";
|
||
|
repo = "choose";
|
||
|
rev = version;
|
||
|
hash = "sha256-oR0GgMinKcBHaZWdE7O+mdbiLKKjkweECKbi80bjW+c=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ xcbuild ];
|
||
|
|
||
|
buildInputs = [ darwin.apple_sdk.frameworks.Cocoa ];
|
||
|
|
||
|
buildPhase = ''
|
||
|
runHook preBuild
|
||
|
xcodebuild -arch ${stdenv.hostPlatform.darwinArch} -configuration Release SYMROOT="./output" build
|
||
|
cp ./output/Release/choose choose
|
||
|
runHook postBuild
|
||
|
'';
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
mkdir -p $out/bin
|
||
|
cp choose $out/bin/choose
|
||
|
chmod +x $out/bin/choose
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "Fuzzy matcher for OS X that uses both std{in,out} and a native GUI";
|
||
|
homepage = "https://github.com/chipsenkbeil/choose";
|
||
|
license = lib.licenses.mit;
|
||
|
platforms = lib.platforms.darwin;
|
||
|
changelog = "https://github.com/chipsenkbeil/choose/blob/${version}/CHANGELOG.md";
|
||
|
maintainers = with lib.maintainers; [ heywoodlh ];
|
||
|
mainProgram = "choose";
|
||
|
};
|
||
|
}
|