about summary refs log tree commit diff
path: root/pkgs/applications/editors/hexdino
diff options
context:
space:
mode:
authorLuz <208297+Luz@users.noreply.github.com>2019-11-18 00:40:31 +0100
committerLassulus <github@lassul.us>2019-11-18 00:40:31 +0100
commit84bfc7207dcb41694c3425582f6fce7fe0024d51 (patch)
tree4b9d6ee60a0cfc56fc5104d0e5d83973ff944694 /pkgs/applications/editors/hexdino
parentf3179ef60a9e1df11db370fceb25906c87dbc9e9 (diff)
downloadnixlib-84bfc7207dcb41694c3425582f6fce7fe0024d51.tar
nixlib-84bfc7207dcb41694c3425582f6fce7fe0024d51.tar.gz
nixlib-84bfc7207dcb41694c3425582f6fce7fe0024d51.tar.bz2
nixlib-84bfc7207dcb41694c3425582f6fce7fe0024d51.tar.lz
nixlib-84bfc7207dcb41694c3425582f6fce7fe0024d51.tar.xz
nixlib-84bfc7207dcb41694c3425582f6fce7fe0024d51.tar.zst
nixlib-84bfc7207dcb41694c3425582f6fce7fe0024d51.zip
hexdino: init at 0.1.0
* hexdino: init at 0.1.0
* Fix fail due to licence
Diffstat (limited to 'pkgs/applications/editors/hexdino')
-rw-r--r--pkgs/applications/editors/hexdino/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/editors/hexdino/default.nix b/pkgs/applications/editors/hexdino/default.nix
new file mode 100644
index 000000000000..ef3635aa8d29
--- /dev/null
+++ b/pkgs/applications/editors/hexdino/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchFromGitHub, rustPlatform, ncurses }:
+rustPlatform.buildRustPackage rec {
+  name = "hexdino-${version}";
+  version = "0.1.0";
+
+  src = fetchFromGitHub {
+    owner = "Luz";
+    repo = "hexdino";
+    rev = "de5b5d7042129f57e0ab36416a06476126bce389";
+    sha256 = "11mz07735gxqfamjcjjmxya6swlvr1p77sgd377zjcmd6z54gwyf";
+  };
+
+  cargoSha256 = "0qa8ypp5a7sf1gic482zh3i6s94w6k6bgmk5ynfvwi7g49ql7c4z";
+  verifyCargoDeps = true;
+
+  buildInputs = [ ncurses ];
+
+  meta = with stdenv.lib; {
+    description = "A hex editor with vim like keybindings written in Rust";
+    homepage = https://github.com/Luz/hexdino;
+    license = licenses.mit;
+    maintainers = [ maintainers.luz ];
+    platforms = platforms.all;
+  };
+}