depot/third_party/nixpkgs/pkgs/development/embedded/gputils/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

19 lines
572 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "gputils";
version = "1.5.2";
src = fetchurl {
url = "mirror://sourceforge/gputils/${pname}-${version}.tar.bz2";
sha256 = "sha256-j7iCCzHXwffHdhQcyzxPBvQK+RXaY3QSjXUtHu463fI=";
};
meta = with lib; {
homepage = "https://gputils.sourceforge.io";
description = "Collection of tools for the Microchip (TM) PIC microcontrollers. It includes gpasm, gplink, and gplib";
license = licenses.gpl2;
maintainers = with maintainers; [ yorickvp ];
platforms = platforms.linux;
};
}