summary refs log tree commit diff
path: root/pkgs/development/tools/misc/srecord/default.nix
blob: e316b4a628e5e2bfc42774e163ea86f551cfaba0 (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.63";

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

  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;
  };
}