Unverified Commit a8d82103 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #246002 from r-ryantm/auto-update/p4c

p4c: 1.2.4.0 -> 1.2.4.1
parents b289d58c a45519d0
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -25,15 +25,15 @@
let
  toCMakeBoolean = v: if v then "ON" else "OFF";
in
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "p4c";
  version = "1.2.4.0";
  version = "1.2.4.1";

  src = fetchFromGitHub {
    owner = "p4lang";
    repo = "p4c";
    rev = "v${version}";
    sha256 = "sha256-nIPvB6nwa55dKNeoNRrjhnnmoYLYTviaoL79+hT6gGs=";
    rev = "v${finalAttrs.version}";
    hash = "sha256-Whdryz1Gt0ymE7cj+mI95lW3Io9yBvLqcWa04gu5zEw=";
    fetchSubmodules = true;
  };

@@ -78,12 +78,12 @@ stdenv.mkDerivation rec {
    python3
  ];

  meta = with lib; {
    homepage = "https://github.com/p4lang/p4c";
  meta = {
    changelog = "https://github.com/p4lang/p4c/releases";
    description = "Reference compiler for the P4 programming language";
    platforms = platforms.linux;
    maintainers = with maintainers; [ raitobezarius govanify ];
    license = licenses.asl20;
    homepage = "https://github.com/p4lang/p4c";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ raitobezarius govanify ];
    platforms = lib.platforms.linux;
  };
}
})