f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
21 lines
509 B
Nix
21 lines
509 B
Nix
{ stdenv, fetchurl, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "hexedit-${version}";
|
|
version = "1.2.13";
|
|
|
|
src = fetchurl {
|
|
url = "http://rigaux.org/${name}.src.tgz";
|
|
sha256 = "1mwdp1ikk64cqmagnrrps5jkn3li3n47maiqh2qc1xbp1ains4ka";
|
|
};
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
meta = {
|
|
description = "View and edit files in hexadecimal or in ASCII";
|
|
homepage = http://prigaux.chez.com/hexedit.html;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|