28ac782583
There are many more packages to fix, this is just a start. Rules: * Don't repeat the package name (not always that easy...) * Start with capital letter * Don't end with full stop * Don't start with "The ..." or "A ..." I've also added descriptions to some packages and rewritten others.
23 lines
622 B
Nix
23 lines
622 B
Nix
{ stdenv, fetchurl, pkgconfig, perl, libusb }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name="avarice-2.13";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/avarice/${name}.tar.bz2";
|
|
sha256 = "0jhh1h1k5b41v2ycq8kn43nkrkh0b9l7xjmw38rak871g3z3hix1";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig perl libusb ];
|
|
|
|
meta = {
|
|
license = stdenv.lib.licenses.gpl2;
|
|
description = "Translator between GDB's remote debug protocol and the AVR JTAG ICE protocol";
|
|
homepage = http://sourceforge.net/projects/avarice/files/avarice/;
|
|
maintainers = [ stdenv.lib.maintainers.smironov ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|
|
|