Created
May 4, 2021 15:23
-
-
Save Mic92/a62ac1824ec230d443ebeb792f4330a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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