My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/applications/editors/vbindiff/default.nix

20 lines
507 B

{ lib, stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
pname = "vbindiff";
version = "3.0_beta5";
buildInputs = [ ncurses ];
src = fetchurl {
url = "https://www.cjmweb.net/vbindiff/${pname}-${version}.tar.gz";
sha256 = "1f1kj4jki08bnrwpzi663mjfkrx4wnfpzdfwd2qgijlkx5ysjkgh";
};
meta = {
description = "A terminal visual binary diff viewer";
homepage = "https://www.cjmweb.net/vbindiff/";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
};
}