python312Packages.argos-translate-files: 1.1.4 -> 1.2.0 (#361677)
[NixPkgs.git] / pkgs / by-name / xc / xcd / package.nix
blob1c2e65f86bf960dbf2c115eaee6093d255ca9929
1 { lib, stdenv, fetchurl, ncurses }:
3 stdenv.mkDerivation rec {
4   pname = "xcd";
5   version = "1.2";
7   src = fetchurl {
8     url = "https://www.muppetlabs.com/~breadbox/pub/software/xcd-${version}.tar.gz";
9     sha256 = "1cgwspy08q05rhxbp7m1yrrix252i9jzfcfbzmhdvlgf5bfpl25g";
10   };
12   buildInputs = [ ncurses ];
14   makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
16   installPhase = ''
17     runHook preInstall
18     install -D $pname $out/bin/$pname
19     runHook postInstall
20   '';
22   meta = with lib; {
23     description = "Colorized hexdump tool";
24     homepage = "https://www.muppetlabs.com/~breadbox/software/xcd.html";
25     maintainers = [ maintainers.xfnw ];
26     license = licenses.mit;
27     platforms = platforms.unix;
28     mainProgram = "xcd";
29   };