at 23.11-beta 19 lines 574 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "gputils"; 5 version = "1.5.2"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/gputils/${pname}-${version}.tar.bz2"; 9 sha256 = "sha256-j7iCCzHXwffHdhQcyzxPBvQK+RXaY3QSjXUtHu463fI="; 10 }; 11 12 meta = with lib; { 13 homepage = "https://gputils.sourceforge.io"; 14 description = "A collection of tools for the Microchip (TM) PIC microcontrollers. It includes gpasm, gplink, and gplib"; 15 license = licenses.gpl2; 16 maintainers = with maintainers; [ yorickvp ]; 17 platforms = platforms.linux; 18 }; 19}