3
0
Fork 0
forked from mirrors/nixpkgs

hyx: init at 0.1.4

This commit is contained in:
Franz Pletz 2018-01-27 01:42:18 +01:00
parent 96be241536
commit 366136806b
No known key found for this signature in database
GPG key ID: 846FDED7792617B4
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "hyx-0.1.4";
src = fetchurl {
url = "https://yx7.cc/code/hyx/${name}.tar.xz";
sha256 = "049r610hyrrfa62vpiqyb3rh99bpy8cnqy4nd4sih01733cmdhyx";
};
installPhase = ''
install -vD hyx $out/bin/hyx
'';
meta = with lib; {
description = "minimalistic but powerful Linux console hex editor";
homepage = https://yx7.cc/code/;
license = licenses.mit;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.all;
};
}

View file

@ -1205,6 +1205,8 @@ with pkgs;
hr = callPackage ../applications/misc/hr { };
hyx = callPackage ../tools/text/hyx { };
icdiff = callPackage ../tools/text/icdiff {};
interlock = callPackage ../servers/interlock {};