toxic: 0.15.1 -> 0.16.0
[NixPkgs.git] / pkgs / by-name / sh / shhmsg / package.nix
bloba58723db25f9b6660298eeb6b4563ea5c3b99c06
2   lib,
3   stdenv,
4   fetchurl,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "shhmsg";
9   version = "1.4.2";
11   src = fetchurl {
12     url = "https://shh.thathost.com/pub-unix/files/shhmsg-${version}.tar.gz";
13     sha256 = "0ax02fzqpaxr7d30l5xbndy1s5vgg1ag643c7zwiw2wj1czrxil8";
14   };
16   postPatch = ''
17     substituteInPlace Makefile --replace "gcc" "${stdenv.cc.targetPrefix}cc"
18   '';
20   installFlags = [ "INSTBASEDIR=$(out)" ];
22   meta = with lib; {
23     description = "Library for displaying messages";
24     homepage = "https://shh.thathost.com/pub-unix/";
25     license = licenses.artistic1;
26     platforms = platforms.all;
27   };