forked from mirrors/nixpkgs
Merge pull request #124291 from Synthetica9/vscode-allow-nixpkgs-auto-update
This commit is contained in:
commit
850f5a27cf
|
@ -9,7 +9,7 @@
|
|||
|
||||
# Attributes inherit from specific versions
|
||||
, version, src, meta, sourceRoot
|
||||
, executableName, longName, shortName, pname
|
||||
, executableName, longName, shortName, pname, updateScript
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -19,7 +19,7 @@ let
|
|||
inherit pname version src sourceRoot;
|
||||
|
||||
passthru = {
|
||||
inherit executableName tests;
|
||||
inherit executableName tests updateScript;
|
||||
fhs = fhs {};
|
||||
fhsWithPackages = f: fhs { additionalPkgs = f; };
|
||||
};
|
||||
|
|
|
@ -20,9 +20,6 @@ let
|
|||
}.${system};
|
||||
in
|
||||
callPackage ./generic.nix rec {
|
||||
# The update script doesn't correctly change the hash for darwin, so please:
|
||||
# nixpkgs-update: no auto update
|
||||
|
||||
# Please backport all compatible updates to the stable release.
|
||||
# This is important for the extension ecosystem.
|
||||
version = "1.56.2";
|
||||
|
@ -40,6 +37,8 @@ in
|
|||
|
||||
sourceRoot = "";
|
||||
|
||||
updateScript = ./update-vscodium.sh;
|
||||
|
||||
meta = with lib; {
|
||||
description = ''
|
||||
Open source source code editor developed by Microsoft for Windows,
|
||||
|
|
|
@ -28,8 +28,6 @@ let
|
|||
in
|
||||
callPackage ./generic.nix rec {
|
||||
inherit sourceRoot;
|
||||
# The update script doesn't correctly change the hash for darwin, so please:
|
||||
# nixpkgs-update: no auto update
|
||||
|
||||
# Please backport all compatible updates to the stable release.
|
||||
# This is important for the extension ecosystem.
|
||||
|
@ -47,6 +45,8 @@ in
|
|||
|
||||
tests = nixosTests.vscodium;
|
||||
|
||||
updateScript = ./update-vscodium.sh;
|
||||
|
||||
meta = with lib; {
|
||||
description = ''
|
||||
Open source source code editor developed by Microsoft for Windows,
|
||||
|
|
Loading…
Reference in a new issue