nixpkgs/pkgs/development/tools/misc/gputils/default.nix

20 lines
577 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2018-07-17 17:28:13 +02:00
stdenv.mkDerivation rec {
pname = "gputils";
2018-07-17 18:19:01 +02:00
version = "1.5.0-1";
2018-07-17 17:28:13 +02:00
src = fetchurl {
url = "mirror://sourceforge/gputils/${pname}-${version}.tar.bz2";
2018-07-17 17:28:13 +02:00
sha256 = "055v83fdgqljprapf7rmh8x66mr13fj0qypj49xba5spx0ca123g";
};
2018-07-17 18:19:01 +02:00
meta = with lib; {
2019-11-10 08:03:06 +01: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 17:28:13 +02:00
license = licenses.gpl2;
2018-07-17 18:19:01 +02:00
maintainers = with maintainers; [ yorickvp ];
2018-07-17 17:28:13 +02:00
platforms = platforms.linux;
};
}