Skip to content

Commit

Permalink
hyx: init at 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz committed Jan 27, 2018
1 parent 96be241 commit 3661368
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/tools/text/hyx/default.nix
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 {};
Expand Down

0 comments on commit 3661368

Please sign in to comment.