mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
srecord: new package
The SRecord package is a collection of powerful tools for manipulating EPROM load files. http://srecord.sourceforge.net/
This commit is contained in:
parent
d37795e572
commit
67ce7f863a
2 changed files with 22 additions and 0 deletions
20
pkgs/development/tools/misc/srecord/default.nix
Normal file
20
pkgs/development/tools/misc/srecord/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
|
@ -3220,6 +3220,8 @@ let
|
|||
|
||||
guile_ncurses = callPackage ../development/guile-modules/guile-ncurses { };
|
||||
|
||||
srecord = callPackage ../development/tools/misc/srecord { };
|
||||
|
||||
windowssdk = (
|
||||
import ../development/misc/windows-sdk {
|
||||
inherit fetchurl stdenv cabextract;
|
||||
|
|
Loading…
Reference in a new issue