1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "https://shh.thathost.com/pub-unix/files/shhmsg-${version}.tar.gz";
9 sha256 = "0ax02fzqpaxr7d30l5xbndy1s5vgg1ag643c7zwiw2wj1czrxil8";
13 substituteInPlace Makefile --replace "gcc" "${stdenv.cc.targetPrefix}cc"
16 installFlags = [ "INSTBASEDIR=$(out)" ];
19 description = "A library for displaying messages";
20 homepage = "https://shh.thathost.com/pub-unix/";
21 license = licenses.artistic1;
22 platforms = platforms.all;