Unverified Commit e1adba41 authored by Nikolay Korotkiy's avatar Nikolay Korotkiy Committed by GitHub
Browse files

c-periphery: 2.4.2 -> 2.4.3 (#386079)

parents 3819cf02 8268c1b3
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -7,13 +7,13 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "c-periphery";
  version = "2.4.2";
  version = "2.4.3";

  src = fetchFromGitHub {
    owner = "vsergeev";
    repo = "c-periphery";
    rev = "v${finalAttrs.version}";
    hash = "sha256-uUSXvMQcntUqD412UWkMif0wLxPhpPdnMb96Pqqh/B4=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-azqGw7KW6/UrQ4eUPkeH8d6l6sSbotNMAAbn5pNMOB8=";
  };

  outputs = [
@@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: {

  nativeBuildInputs = [ cmake ];

  meta = with lib; {
  meta = {
    description = "C library for peripheral I/O (GPIO, LED, PWM, SPI, I2C, MMIO, Serial) in Linux";
    homepage = "https://github.com/vsergeev/c-periphery";
    license = licenses.mit;
    maintainers = with maintainers; [ sikmir ];
    platforms = platforms.linux;
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ sikmir ];
    platforms = lib.platforms.linux;
  };
})