Skip to content

Commit

Permalink
daed: 0.8.0 -> 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aucub committed Jan 15, 2025
1 parent d18c82b commit 5289e5c
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions pkgs/by-name/da/daed/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@

let
pname = "daed";
version = "0.8.0";
version = "0.9.0";

src = fetchFromGitHub {
owner = "daeuniverse";
repo = "daed";
tag = "v${version}";
hash = "sha256-h1j91XIumuzuJnMxgkCjhuXYPLXoDuFFsfmDwmzlTEI=";
hash = "sha256-5olEPaS/6ag69KUwBG8qXpyr1B2qrLK+vf13ZljHH+c=";
fetchSubmodules = true;
};

Expand All @@ -26,7 +27,7 @@ let

pnpmDeps = pnpm_9.fetchDeps {
inherit pname version src;
hash = "sha256-vqkiZzd5WOeJem0zUyMsJd6/aHHAjlsIQMkNf+SUvHY=";
hash = "sha256-+yLpSbDzr1OV/bmUUg6drOvK1ok3cBd+RRV7Qrrlp+Q=";
};

nativeBuildInputs = [
Expand All @@ -36,28 +37,34 @@ let

buildPhase = ''
runHook preBuild
pnpm build
runHook postBuild
'';

installPhase = ''
runHook preInstall
mkdir -p $out
cp -R dist/* $out/
cp -R dist $out
runHook postInstall
'';
};
in

buildGoModule rec {
inherit
pname
version
src
web
;

sourceRoot = "${src.name}/wing";

vendorHash = "sha256-TBR3MmpTdwIwyekU+nrHhzsN31E30+Rqd3FoBL3dl4U=";
vendorHash = "sha256-qB2qcJ82mFcVvjlYp/N9sqzwPotTROgymSX5NfEQMuY=";

proxyVendor = true;

nativeBuildInputs = [ clang ];
Expand Down

0 comments on commit 5289e5c

Please sign in to comment.