My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/overlays/kookie/funkwhale-frontend/default.nix

15 lines
366 B

{ stdenv, fetchzip }:
stdenv.mkDerivation rec {
pname = "funkwhale-frontend";
version = "1.1";
src = fetchzip {
url = "https://dev.funkwhale.audio/funkwhale/funkwhale/builds/artifacts/${version}/download?job=build_front&foo.zip";
sha256 = "0zddwd47ik3nrqpgkmvn4zx90w9708zjxlq0rr54vh5gzj326pgc";
};
installPhase = ''
cp -rv dist $out
'';
}