atom-beta: 1.49.0 -> 1.55.0; marked as broken

This commit is contained in:
Vladimir Serov 2021-02-25 00:36:49 +03:00
parent 2c7b8290c6
commit 532e499f11
No known key found for this signature in database
GPG key ID: 6BA7C26C3FDF7BB3

View file

@ -8,13 +8,14 @@ let
};
atom-beta = {
version = "1.49.0";
version = "1.55.0";
beta = 0;
sha256 = "1fr6m4a7shdj3wpn6g4n95cqpkkg2x9srwjf7bqxv9f3d5jb1y33";
sha256 = "sha256-PICkTt54cPkDJVnXBTtSHUQVbmosOpZfVAiD5A3/n+Q=";
broken = true;
};
};
common = pname: {version, sha256, beta ? null}:
common = pname: {version, sha256, beta ? null, broken ? false}:
let fullVersion = version + lib.optionalString (beta != null) "-beta${toString beta}";
name = "${pname}-${fullVersion}";
in stdenv.mkDerivation {
@ -88,6 +89,7 @@ let
license = licenses.mit;
maintainers = with maintainers; [ offline ysndr ];
platforms = platforms.x86_64;
inherit broken;
};
};
in lib.mapAttrs common versions