Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 32 lines 916 B view raw
1{ 2 callPackage, 3 nixosTests, 4 ... 5}@args: 6 7callPackage ./generic.nix args { 8 # You have to ensure that in `pkgs/top-level/linux-kernels.nix` 9 # this attribute is the correct one for this package. 10 kernelModuleAttribute = "zfs_unstable"; 11 12 kernelMinSupportedMajorMinor = "4.18"; 13 kernelMaxSupportedMajorMinor = "6.15"; 14 15 # this package should point to a version / git revision compatible with the latest kernel release 16 # IMPORTANT: Always use a tagged release candidate or commits from the 17 # zfs-<version>-staging branch, because this is tested by the OpenZFS 18 # maintainers. 19 version = "2.3.3"; 20 # rev = ""; 21 22 tests = { 23 inherit (nixosTests.zfs) unstable; 24 }; 25 26 hash = "sha256-NXAbyGBfpzWfm4NaP1/otTx8fOnoRV17343qUMdQp5U="; 27 28 extraLongDescription = '' 29 This is "unstable" ZFS, and will usually be a pre-release version of ZFS. 30 It may be less well-tested and have critical bugs. 31 ''; 32}