nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at netboot-syslinux-multiplatform 20 lines 507 B view raw
1{ lib, stdenv, fetchurl, ncurses }: 2 3stdenv.mkDerivation rec { 4 pname = "vbindiff"; 5 version = "3.0_beta5"; 6 7 buildInputs = [ ncurses ]; 8 9 src = fetchurl { 10 url = "https://www.cjmweb.net/vbindiff/${pname}-${version}.tar.gz"; 11 sha256 = "1f1kj4jki08bnrwpzi663mjfkrx4wnfpzdfwd2qgijlkx5ysjkgh"; 12 }; 13 14 meta = { 15 description = "A terminal visual binary diff viewer"; 16 homepage = "https://www.cjmweb.net/vbindiff/"; 17 license = lib.licenses.gpl2Plus; 18 platforms = lib.platforms.unix; 19 }; 20}