aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/text/hyx
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2018-01-27 01:42:18 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2018-01-27 22:59:19 +0100
commit366136806b7ca3d3205b5789bea953b9dc3ea1fa (patch)
tree488e4d80520881e70d2eca4945ae0cba8ed749dc /pkgs/tools/text/hyx
parent96be2415368e07185346cb036cb0af359cef9b04 (diff)
hyx: init at 0.1.4
Diffstat (limited to 'pkgs/tools/text/hyx')
-rw-r--r--pkgs/tools/text/hyx/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/text/hyx/default.nix b/pkgs/tools/text/hyx/default.nix
new file mode 100644
index 000000000000..1ba3534e3f8a
--- /dev/null
+++ b/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;
+ };
+}