about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/embedded/gputils
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/embedded/gputils')
-rw-r--r--nixpkgs/pkgs/development/embedded/gputils/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/embedded/gputils/default.nix b/nixpkgs/pkgs/development/embedded/gputils/default.nix
new file mode 100644
index 000000000000..69a901ea80f7
--- /dev/null
+++ b/nixpkgs/pkgs/development/embedded/gputils/default.nix
@@ -0,0 +1,19 @@
+{ 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 = "A 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;
+  };
+}