Skip to content

Commit

Permalink
elvish: 0.18.0 -> 0.19.2
Browse files Browse the repository at this point in the history
https://elv.sh/blog/0.19.1-release-notes.html

Packaging has changed and what was previously called a 'reproducible'
build is now called 'official' and these builds are generated using a
docker image: https://github.com/elves/elvish/blob/master/PACKAGING.md
  • Loading branch information
star-szr authored and AndersonTorres committed Mar 22, 2023
1 parent b9dfd91 commit 69ddafe
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions pkgs/shells/elvish/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@

buildGoModule rec {
pname = "elvish";
version = "0.18.0";
version = "0.19.2";

subPackages = [ "cmd/elvish" ];

ldflags = [ "-s" "-w" "-X src.elv.sh/pkg/buildinfo.Version==${version}" "-X src.elv.sh/pkg/buildinfo.Reproducible=true" ];
ldflags = [ "-s" "-w" "-X src.elv.sh/pkg/buildinfo.Version==${version}" ];

src = fetchFromGitHub {
owner = "elves";
repo = pname;
rev = "v${version}";
sha256 = "sha256-AyTkJiNebpq17vdPluwJBztivezd+c1KAdWFTYYDIFE=";
sha256 = "sha256-eCPJXCgmMvrJ2yVqYgXHXJWb6Ec0sutc91LNs4yRBYk=";
};

vendorSha256 = "sha256-iuklI7XEQUgZ2ObYRROxyiccZ1JkajK5OJA7hIcpRZQ=";
vendorSha256 = "sha256-VMI20IP1jVkUK3rJm35szaFDfZGEEingUEL/xfVJ1cc=";

strictDeps = true;
doCheck = false;
Expand All @@ -33,7 +33,6 @@ buildGoModule rec {
}
expect version ${version}
expect reproducible \$true
"
runHook postInstallCheck
Expand Down

0 comments on commit 69ddafe

Please sign in to comment.