1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-12 15:47:28 +00:00
nixpkgs/pkgs/development/tools/misc/gputils/default.nix

20 lines
579 B
Nix
Raw Normal View History

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