Merge pull request #281740 from pokon548/revert-dae-to-0.4.0

Revert "dae: 0.4.0 -> 0.5.0"
This commit is contained in:
Nick Cao 2024-01-18 10:11:09 -05:00 committed by GitHub
commit d56fb44cfe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,27 +2,24 @@
, clang
, fetchFromGitHub
, buildGoModule
, installShellFiles
}:
buildGoModule rec {
pname = "dae";
version = "0.5.0";
version = "0.4.0";
src = fetchFromGitHub {
owner = "daeuniverse";
repo = "dae";
rev = "v${version}";
hash = "sha256-DxGKfxu13F7+5zV/31GP9gkbGHrz5RdRe84J3DQ0iUs=";
hash = "sha256-hvAuWCacaWxXwxx5ktj57hnWt8fcnwD6rUuRj1+ZtFA=";
fetchSubmodules = true;
};
vendorHash = "sha256-UQRM3/JSsPDAGqYZ43bVYVvSLvqqZ/BJE6hwx5wzfcQ=";
vendorHash = "sha256-qK+x6ciAebwIWHRjRpNXCAqsfnmEx37evS4+7kwcFIs=";
proxyVendor = true;
nativeBuildInputs = [ clang installShellFiles ];
CGO_ENABLED = 0;
nativeBuildInputs = [ clang ];
ldflags = [
"-s"
@ -44,7 +41,6 @@ buildGoModule rec {
install -Dm444 install/dae.service $out/lib/systemd/system/dae.service
substituteInPlace $out/lib/systemd/system/dae.service \
--replace /usr/bin/dae $out/bin/dae
installShellCompletion install/shell-completion/dae.{bash,zsh,fish}
'';
meta = with lib; {