mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-30 23:34:12 +03:00
hydron: 3.3.5 -> 3.3.6
This is the final update, hydron is now archived.
This commit is contained in:
parent
7ddfb722dc
commit
29e09b1d0c
@ -1,25 +1,36 @@
|
|||||||
{ lib, buildGoModule, fetchFromGitHub, pkg-config, ffmpeg }:
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
, gitUpdater
|
||||||
|
, pkg-config
|
||||||
|
, ffmpeg
|
||||||
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "hydron";
|
pname = "hydron";
|
||||||
version = "3.3.5";
|
version = "3.3.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "bakape";
|
owner = "bakape";
|
||||||
repo = "hydron";
|
repo = "hydron";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0c958dsw5pq9z8n1b9q9j8y6vgiqf6mmlsf77ncb7yrlilhbrz6s";
|
hash = "sha256-Q1pZf5FPQw+pHItcZyOGx0N+iHmz9rW0+ANFsketh6E=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "0cc8ar8p7lgg6rj76vhfp6bzrxyn5yaqjwj8i1bn0zp6sj6zcfam";
|
vendorHash = "sha256-fyGC6k9/xER5GwVelBhy5C5tiq6NMhwSmYjSpvenrfA=";
|
||||||
proxyVendor = true;
|
proxyVendor = true;
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ ffmpeg ];
|
buildInputs = [ ffmpeg ];
|
||||||
|
|
||||||
|
passthru.updateScript = gitUpdater {
|
||||||
|
rev-prefix = "v";
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/bakape/hydron";
|
homepage = "https://github.com/bakape/hydron";
|
||||||
description = "High performance media tagger and organizer";
|
description = "High performance media tagger and organizer";
|
||||||
license = licenses.lgpl3Plus;
|
license = with licenses; [ lgpl3Plus ];
|
||||||
maintainers = with maintainers; [ Madouura ];
|
maintainers = with maintainers; [ Madouura ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user