Merge: zmap: 4.2.0 -> 4.3.1 (#364578)
[NixPkgs.git] / pkgs / by-name / sh / shhopt / package.nix
blob0b36bfc8cd8cd578fdfaa3083bb9a85f951e0ad3
2   lib,
3   stdenv,
4   fetchurl,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "shhopt";
9   version = "1.1.7";
11   src = fetchurl {
12     url = "https://shh.thathost.com/pub-unix/files/${pname}-${version}.tar.gz";
13     sha256 = "0yd6bl6qw675sxa81nxw6plhpjf9d2ywlm8a5z66zyjf28sl7sds";
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 parsing command line options";
24     homepage = "https://shh.thathost.com/pub-unix/";
25     license = licenses.artistic1;
26     platforms = platforms.all;
27   };