mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
dms: init at 1.6.0 (#338575)
This commit is contained in:
commit
d4131b8d34
1 changed files with 28 additions and 0 deletions
28
pkgs/by-name/dm/dms/package.nix
Normal file
28
pkgs/by-name/dm/dms/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue