biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / misc / srecord / default.nix
blob1d542383bfb0e9511062f8716eec7c27497bec94
1 { lib, stdenv, fetchurl, boost, libtool, groff, ghostscript, libgcrypt ? null }:
3 stdenv.mkDerivation rec {
4   pname = "srecord";
5   version = "1.64";
7   src = fetchurl {
8     url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
9     sha256 = "1qk75q0k5vzmm3932q9hqz2gp8n9rrdfjacsswxc02656f3l3929";
10   };
12   buildInputs = [ boost libtool groff ghostscript libgcrypt ];
14   configureFlags = lib.optional (libgcrypt == null) "--without-gcrypt";
16   meta = with lib; {
17     description = "Collection of powerful tools for manipulating EPROM load files";
18     homepage = "https://srecord.sourceforge.net/";
19     license = licenses.gpl3Plus;
20     maintainers = [ maintainers.bjornfor ];
21     platforms = lib.platforms.unix;
22   };