mstflint: 4.34.0-1 -> 4.34.1-2 (#473551)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
fetchFromGitHub,
|
||||
rdma-core,
|
||||
openssl,
|
||||
zlib,
|
||||
@@ -24,15 +24,15 @@
|
||||
enableDPA ? true,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "mstflint";
|
||||
version = "4.34.1-2";
|
||||
|
||||
# if you update the version of this package, also update the input hash in mstflint_access!
|
||||
version = "4.34.0-1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Mellanox/mstflint/releases/download/v${version}/mstflint-${version}.tar.gz";
|
||||
hash = "sha256-MOFfbrjwnWXVskFCF2pgjf1Z8nkZV0l+CLfGWzxmmIg=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "Mellanox";
|
||||
repo = finalAttrs.pname;
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-jYZoP0tJG3HmLojJAWSgMFqlyP9hX8v1R0HL1lwR4Eg=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
@@ -130,4 +130,4 @@ stdenv.mkDerivation rec {
|
||||
maintainers = with lib.maintainers; [ thillux ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
@@ -10,12 +10,9 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mstflint_access";
|
||||
inherit (mstflint) version;
|
||||
inherit (mstflint) version src;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Mellanox/mstflint/releases/download/v${version}/kernel-mstflint-${version}.tar.gz";
|
||||
hash = "sha256-VO4nXGlqp955xmNyAD/TdOfLEA2CKouOJmLnRCvjnaw=";
|
||||
};
|
||||
sourceRoot = "source/kernel";
|
||||
|
||||
nativeBuildInputs = [ kmod ] ++ kernel.moduleBuildDependencies;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user