hexfiend: init at 2.16.0
This commit is contained in:
parent
98682da098
commit
6e3e0b14d7
2 changed files with 29 additions and 0 deletions
27
pkgs/os-specific/darwin/hexfiend/default.nix
Normal file
27
pkgs/os-specific/darwin/hexfiend/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, lib, fetchurl, undmg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hexfiend";
|
||||
version = "2.16.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/HexFiend/HexFiend/releases/download/v${version}/Hex_Fiend_${lib.versions.majorMinor version}.dmg";
|
||||
sha256 = "sha256-jO57bW5TyuQ0mjKKsSwDoGLp2TZ1d+m159flVGaVrLc=";
|
||||
};
|
||||
|
||||
sourceRoot = "Hex Fiend.app";
|
||||
nativeBuildInputs = [ undmg ];
|
||||
installPhase = ''
|
||||
mkdir -p "$out/Applications/Hex Fiend.app"
|
||||
cp -R . "$out/Applications/Hex Fiend.app"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Open-source macOS hex editor";
|
||||
homepage = "http://hexfiend.com/";
|
||||
changelog = "https://hexfiend.github.io/HexFiend/ReleaseNotes.html";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ eliandoran ];
|
||||
platforms = [ "x86_64-darwin" ];
|
||||
};
|
||||
}
|
|
@ -3718,6 +3718,8 @@ with pkgs;
|
|||
|
||||
grandperspective = callPackage ../os-specific/darwin/grandperspective { };
|
||||
|
||||
hexfiend = callPackage ../os-specific/darwin/hexfiend { };
|
||||
|
||||
grb = callPackage ../applications/misc/grb { };
|
||||
|
||||
kerf = kerf_1; /* kerf2 is WIP */
|
||||
|
|
Loading…
Reference in a new issue