nixpkgs/pkgs/development/embedded/gputils/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
574 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2018-07-17 15:28:13 +00:00
stdenv.mkDerivation rec {
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 {
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
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;
};
}