summary refs log tree commit diff
path: root/pkgs/development/tools/misc/srecord/default.nix
blob: 25140093f51617d7b7e83d7464d18c74f6d73d7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, boost, libtool, groff, ghostscript }:

stdenv.mkDerivation rec {
  name = "srecord-1.62";

  src = fetchurl {
    url = "mirror://sourceforge/srecord/${name}.tar.gz";
    sha256 = "0bfbmhsm9mbwiik3yrhm95q8bgx1k4mh2ai412k8zjyi8f5f3904";
  };

  buildInputs = [ boost libtool groff ghostscript ];

  meta = with stdenv.lib; {
    description = "Collection of powerful tools for manipulating EPROM load files";
    homepage = http://srecord.sourceforge.net/;
    license = licenses.gpl3Plus;
    maintainers = [ maintainers.bjornfor ];
    platforms = platforms.linux;
  };
}