2021-01-23 12:26:19 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2018-07-17 15:28:13 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gputils";
|
2022-02-11 20:03:46 +00:00
|
|
|
version = "1.5.2";
|
2018-07-17 16:19:01 +00:00
|
|
|
|
2018-07-17 15:28:13 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://sourceforge/gputils/${pname}-${version}.tar.bz2";
|
2022-02-11 20:03:46 +00:00
|
|
|
sha256 = "sha256-j7iCCzHXwffHdhQcyzxPBvQK+RXaY3QSjXUtHu463fI=";
|
2018-07-17 15:28:13 +00:00
|
|
|
};
|
2018-07-17 16:19:01 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with 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 15:28:13 +00:00
|
|
|
license = licenses.gpl2;
|
2018-07-17 16:19:01 +00:00
|
|
|
maintainers = with maintainers; [ yorickvp ];
|
2018-07-17 15:28:13 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|