2018-07-17 16:28:13 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gputils";
|
2018-07-17 17:19:01 +01:00
|
|
|
version = "1.5.0-1";
|
|
|
|
|
2018-07-17 16:28:13 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/gputils/${pname}-${version}.tar.bz2";
|
2018-07-17 16:28:13 +01:00
|
|
|
sha256 = "055v83fdgqljprapf7rmh8x66mr13fj0qypj49xba5spx0ca123g";
|
|
|
|
};
|
2018-07-17 17:19:01 +01:00
|
|
|
|
2018-07-17 16:28:13 +01:00
|
|
|
meta = with stdenv.lib; {
|
2019-11-10 07:03:06 +00:00
|
|
|
homepage = "https://gputils.sourceforge.io";
|
|
|
|
description = "A collection of tools for the Microchip (TM) PIC microcontrollers. It includes gpasm, gplink, and gplib";
|
2018-07-17 16:28:13 +01:00
|
|
|
license = licenses.gpl2;
|
2018-07-17 17:19:01 +01:00
|
|
|
maintainers = with maintainers; [ yorickvp ];
|
2018-07-17 16:28:13 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|