1 { lib, stdenv, fetchurl, boost, libtool, groff, ghostscript, libgcrypt ? null }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
9 sha256 = "1qk75q0k5vzmm3932q9hqz2gp8n9rrdfjacsswxc02656f3l3929";
12 buildInputs = [ boost libtool groff ghostscript libgcrypt ];
14 configureFlags = lib.optional (libgcrypt == null) "--without-gcrypt";
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;