27 lines
823 B
Nix
27 lines
823 B
Nix
{ buildGo116Module
|
|
, fetchFromGitHub
|
|
, git
|
|
}: buildGo116Module rec {
|
|
pname = "matrix-media-repo";
|
|
version = "1.2.12";
|
|
src = fetchFromGitHub {
|
|
owner = "turt2live";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1j6y7alr60mmj5h014qmpz9a5qjv8cm61andwdacb0dqjjbvsm0z";
|
|
};
|
|
proxyVendor = true;
|
|
vendorSha256 = "sha256-gb2inc/XlPAplVYQXmR77b3/5GsEZDg5v7D/FbZRQ7w=";
|
|
nativeBuildInputs = [
|
|
git
|
|
];
|
|
buildPhase = ''
|
|
GOBIN=$PWD/bin go install -v ./cmd/compile_assets
|
|
$PWD/bin/compile_assets
|
|
GOBIN=$PWD/bin go install -ldflags "-X github.com/turt2live/matrix-media-repo/common/version.GitCommit=$(git rev-list -1 HEAD) -X github.com/turt2live/matrix-media-repo/common/version.Version=$(git describe --tags)" -v ./cmd/...
|
|
'';
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp -rv bin $out
|
|
'';
|
|
}
|