Merge pull request #122153 from xfnw/xcd

This commit is contained in:
Sandro 2021-05-10 19:17:53 +02:00 committed by GitHub
commit 6cdfb34f08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
pname = "xcd";
version = "1.2";
src = fetchurl {
url = "https://www.muppetlabs.com/~breadbox/pub/software/${pname}-${version}.tar.gz";
sha256 = "1cgwspy08q05rhxbp7m1yrrix252i9jzfcfbzmhdvlgf5bfpl25g";
};
buildInputs = [ ncurses ];
installPhase = ''
runHook preInstall
install -D $pname $out/bin/$pname
runHook postInstall
'';
meta = with lib; {
description = "Colorized hexdump tool";
homepage = "https://www.muppetlabs.com/~breadbox/software/xcd.html";
maintainers = [ maintainers.xfnw ];
license = licenses.mit;
platforms = platforms.unix;
};
}

View file

@ -808,6 +808,8 @@ in
tfk8s = callPackage ../tools/misc/tfk8s { };
xcd = callPackage ../tools/misc/xcd { };
xtrt = callPackage ../tools/archivers/xtrt { };
yabridge = callPackage ../tools/audio/yabridge {