lol

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

authored by

Nikolay Korotkiy and committed by
GitHub
e1adba41 3819cf02

+7 -7
+7 -7
pkgs/by-name/c-/c-periphery/package.nix
··· 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "c-periphery"; 10 - version = "2.4.2"; 10 + version = "2.4.3"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "vsergeev"; 14 14 repo = "c-periphery"; 15 - rev = "v${finalAttrs.version}"; 16 - hash = "sha256-uUSXvMQcntUqD412UWkMif0wLxPhpPdnMb96Pqqh/B4="; 15 + tag = "v${finalAttrs.version}"; 16 + hash = "sha256-azqGw7KW6/UrQ4eUPkeH8d6l6sSbotNMAAbn5pNMOB8="; 17 17 }; 18 18 19 19 outputs = [ ··· 30 30 31 31 nativeBuildInputs = [ cmake ]; 32 32 33 - meta = with lib; { 33 + meta = { 34 34 description = "C library for peripheral I/O (GPIO, LED, PWM, SPI, I2C, MMIO, Serial) in Linux"; 35 35 homepage = "https://github.com/vsergeev/c-periphery"; 36 - license = licenses.mit; 37 - maintainers = with maintainers; [ sikmir ]; 38 - platforms = platforms.linux; 36 + license = lib.licenses.mit; 37 + maintainers = with lib.maintainers; [ sikmir ]; 38 + platforms = lib.platforms.linux; 39 39 }; 40 40 })