mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
44 lines
987 B
Nix
44 lines
987 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, ffmpeg
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "lux";
|
|
version = "0.23.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "iawia002";
|
|
repo = "lux";
|
|
rev = "v${version}";
|
|
hash = "sha256-lZrsrBO3sAn4wAMMgxrVwky7HmKxnQQcLe1POYTAmoE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
vendorHash = "sha256-1VZFKDoSuSUmYw7g6SwB/dXnFaw7+cGHKfgT96HaI/o=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/iawia002/lux/app.version=v${version}"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/lux \
|
|
--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}
|
|
'';
|
|
|
|
doCheck = false; # require network
|
|
|
|
meta = with lib; {
|
|
description = "Fast and simple video download library and CLI tool written in Go";
|
|
homepage = "https://github.com/iawia002/lux";
|
|
changelog = "https://github.com/iawia002/lux/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ galaxy ];
|
|
mainProgram = "lux";
|
|
};
|
|
}
|