0c160be3d2
Quite a useful tool, especially for non English native speakers to find out what people mean with things like "hiccup", "boink", "blugle" and whatnot. And of course it's quite useful to convert between hex/oct/dec/bin. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
26 lines
568 B
Nix
26 lines
568 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ascii-${version}";
|
|
version = "3.12";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.catb.org/~esr/ascii/${name}.tar.gz";
|
|
sha256 = "17jhmmdbhzzaai0lr5aslg0nmqchq1ygdxwd8pgl7qn2jnxhc6ci";
|
|
};
|
|
|
|
prePatch = ''
|
|
sed -i -e 's|$(DESTDIR)/usr|$(out)|g' Makefile
|
|
'';
|
|
|
|
preInstall = ''
|
|
mkdir -vp "$out/bin" "$out/share/man/man1"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Interactive ASCII name and synonym chart";
|
|
homepage = "http://www.catb.org/~esr/ascii/";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
};
|
|
}
|