Skip to content

Instantly share code, notes, and snippets.

@Mic92
Created May 4, 2021 15:23
Show Gist options
  • Select an option

  • Save Mic92/a62ac1824ec230d443ebeb792f4330a7 to your computer and use it in GitHub Desktop.

Select an option

Save Mic92/a62ac1824ec230d443ebeb792f4330a7 to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
let
version = "19.02";
in
linuxPackages.dpdk.overrideAttrs (old: {
src = fetchurl {
url = "https://fast.dpdk.org/rel/dpdk-${version}.tar.xz";
# when changing a version update the hash from output of the failing build.
sha256 = "sha256-QLpRVqL7DN89cG0xoaORLnv8STiQ3IQUk/7gBayAVRs=";
};
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment