Unverified Commit f8b8660a authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

spi-tools: init at 1.0.2 (#462036)

parents ec81fb64 8c92c5d6
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -16460,6 +16460,12 @@
    githubId = 1472826;
    name = "Max Smolin";
  };
  maxmosk = {
    email = "maximmosk4@gmail.com";
    github = "maxmosk";
    githubId = 89240935;
    name = "Maxim Moskalets";
  };
  maxstrid = {
    email = "mxwhenderson@gmail.com";
    github = "maxstrid";
+30 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromGitHub,
  autoreconfHook,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "spi-tools";
  version = "1.0.2";

  src = fetchFromGitHub {
    owner = "cpb-";
    repo = "spi-tools";
    tag = finalAttrs.version;
    hash = "sha256-lrdoO4ZsZCf0pt1SSL5w4rXVuYzlkJZQpditYt61nUw=";
  };

  nativeBuildInputs = [
    autoreconfHook
  ];

  meta = {
    description = "Simple command line tools to help using Linux spidev devices";
    homepage = "https://github.com/cpb-/spi-tools";
    license = lib.licenses.gpl2Only;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ maxmosk ];
  };
})