summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-12-12 17:01:20 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-12-12 17:01:20 +0100
commitf364619e222148ca23647ad67293b0a99ddf0e55 (patch)
tree7755a4c4514cf5bc926af7ff96f04558afffdd87 /pkgs/applications/editors
parent0ecd1f62c799dffbdbd4bc1ba8120bfb4a4c7a6f (diff)
parent5054e8ec29f06dae986297debc6d0c4e60c9da7a (diff)
downloadnixpkgs-f364619e222148ca23647ad67293b0a99ddf0e55.tar
nixpkgs-f364619e222148ca23647ad67293b0a99ddf0e55.tar.gz
nixpkgs-f364619e222148ca23647ad67293b0a99ddf0e55.tar.bz2
nixpkgs-f364619e222148ca23647ad67293b0a99ddf0e55.tar.lz
nixpkgs-f364619e222148ca23647ad67293b0a99ddf0e55.tar.xz
nixpkgs-f364619e222148ca23647ad67293b0a99ddf0e55.tar.zst
nixpkgs-f364619e222148ca23647ad67293b0a99ddf0e55.zip
Merge remote-tracking branch 'origin/master' into stdenv-updates
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/vbindiff/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/applications/editors/vbindiff/default.nix b/pkgs/applications/editors/vbindiff/default.nix
new file mode 100644
index 00000000000..a03ce539d50
--- /dev/null
+++ b/pkgs/applications/editors/vbindiff/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchurl, ncurses }:
+
+stdenv.mkDerivation rec {
+  name = "vbindiff-${version}";
+  version = "3.0_beta4";
+
+  buildInputs = [ ncurses ];
+
+  src = fetchurl {
+    url = "http://www.cjmweb.net/vbindiff/${name}.tar.gz";
+    sha256 = "0gcqy4ggp60qc6blq1q1gc90xmhip1m6yvvli4hdqlz9zn3mlpbx";
+  };
+
+  meta = {
+    description = "A terminal visual binary diff viewer";
+    homepage = "http://www.cjmweb.net/vbindiff/";
+    license = stdenv.lib.licenses.gpl2Plus;
+  };
+}