Unverified Commit 794926b6 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

aseq2json, intel-ipsec-mb, sendgmail: fix sourceRoot (#464888)

parents b97c3bf5 be378537
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ stdenv.mkDerivation (finalAttrs: {
    rev = "8572e6313a0d7ec95492dcab04a46c5dd30ef33a";
    hash = "sha256-LQ9LLVumi3GN6c9tuMSOd1Bs2pgrwrLLQbs5XF+NZeA=";
  };
  sourceRoot = "source/aseq2json";
  sourceRoot = "${finalAttrs.src.name}/aseq2json";

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [
+6 −6
Original line number Diff line number Diff line
@@ -5,18 +5,18 @@
  nasm,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "intel-ipsec-mb";
  version = "2.0.1";

  src = fetchFromGitHub {
    owner = "intel";
    repo = "intel-ipsec-mb";
    rev = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-k/NoPMKbiWZ25tdomsPpv2gfhQuBHxzX6KRT1UY88Ko=";
  };

  sourceRoot = "source/lib";
  sourceRoot = "${finalAttrs.src.name}/lib";

  nativeBuildInputs = [ nasm ];

@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
    "NOLDCONFIG=y"
  ];

  meta = with lib; {
  meta = {
    description = "Intel Multi-Buffer Crypto for IPsec Library";
    longDescription = ''
      Intel Multi-Buffer Crypto for IPsec Library provides software crypto
@@ -34,8 +34,8 @@ stdenv.mkDerivation rec {
      and MPEG DRM.
    '';
    homepage = "https://github.com/intel/intel-ipsec-mb";
    license = licenses.bsd3;
    license = lib.licenses.bsd3;
    platforms = [ "x86_64-linux" ];
    maintainers = [ ];
  };
}
})
+3 −3
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
  fetchFromGitHub,
  nix-update-script,
}:
buildGoModule {
buildGoModule (finalAttrs: {
  pname = "sendgmail";
  version = "0-unstable-2025-03-06";

@@ -15,7 +15,7 @@ buildGoModule {
    hash = "sha256-bzbTU9SA4dJKtQVkqESvV5o3l3MY4Uy7HDqo7jI3dhM=";
  };

  sourceRoot = "source/go/sendgmail";
  sourceRoot = "${finalAttrs.src.name}/go/sendgmail";

  vendorHash = "sha256-0pjcO2Ati+mUSw614uEL3CatHSgbgDUfOBE8bWpjmcw=";

@@ -29,4 +29,4 @@ buildGoModule {
    platforms = lib.platforms.unix;
    mainProgram = "sendgmail";
  };
}
})