mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 06:33:42 +00:00
e0b048da92
Changes since last update:
56c04accf9...44684fa71d
13 lines
436 B
Nix
13 lines
436 B
Nix
{ self, callPackage, lib }:
|
|
callPackage ./default.nix {
|
|
inherit self;
|
|
version = "2.0.5-2021-05-17";
|
|
rev = "44684fa71d8af6fa8b3051c7d763bbfdcf7915d7";
|
|
isStable = true;
|
|
sha256 = "049d3l0miv4n0cnm35ml8flrb9vs12zvbda2743vypckymidliqp";
|
|
extraMeta = { # this isn't precise but it at least stops the useless Hydra build
|
|
platforms = with lib; filter (p: p != "aarch64-linux")
|
|
(platforms.linux ++ platforms.darwin);
|
|
};
|
|
}
|