dms: init at 1.6.0

This commit is contained in:
claes 2024-08-31 10:23:37 +02:00
parent 7d0d974fc2
commit 7d95d63b85

View File

@ -0,0 +1,28 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "dms";
version = "1.6.0";
src = fetchFromGitHub {
owner = "anacrolix";
repo = "dms";
rev = "refs/tags/v${version}";
hash = "sha256-QwRLNCXDu/dKh2o17AyASlVQPIEOX6e4kTINa2ZzZkU=";
};
vendorHash = "sha256-Z0DoVmL0zJ4l9hrO+zGp6FcExvhbiPu5+N3Mfyxi5DE=";
meta = {
homepage = "https://github.com/anacrolix/dms";
description = "UPnP DLNA Digital Media Server with basic video transcoding";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.claes ];
platforms = lib.platforms.linux;
mainProgram = "dms";
};
}