Unverified Commit 9719c6ef authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

lms: 3.56.0 -> 3.57.0 (#340390)

parents 439a7c8a 8b8a20d1
Loading
Loading
Loading
Loading
+9 −6
Original line number Diff line number Diff line
@@ -17,16 +17,18 @@
  libSM,
  libICE,
  stb,
  openssl,
}:

stdenv.mkDerivation rec {
  pname = "lms";
  version = "3.56.0";
  version = "3.57.0";

  src = fetchFromGitHub {
    owner = "epoupon";
    repo = "lms";
    rev = "v${version}";
    hash = "sha256-o/wgh/PtFcTOmfl5H1cc1cTsWFvEnVQYhh4hPTnLNMU=";
    hash = "sha256-KeskFVTZMxsFefbjnRBfrbS88Wt+2kwzboDziBsZJrY=";
  };

  strictDeps = true;
@@ -48,6 +50,7 @@ stdenv.mkDerivation rec {
    libSM
    libICE
    stb
    openssl
  ];

  postPatch = ''
@@ -77,12 +80,12 @@ stdenv.mkDerivation rec {
      --prefix LD_LIBRARY_PATH : "${lib.strings.makeLibraryPath [libSM libICE]}"
  '';

  meta = with lib; {
  meta = {
    homepage = "https://github.com/epoupon/lms";
    description = "Lightweight Music Server - Access your self-hosted music using a web interface";
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    license = lib.licenses.gpl3Plus;
    platforms = lib.platforms.linux;
    mainProgram = "lms";
    maintainers = with maintainers; [ mksafavi ];
    maintainers = with lib.maintainers; [ mksafavi ];
  };
}