summary refs log tree commit diff
path: root/pkgs/development/libraries/dleyna-server
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2021-10-24 10:31:07 +0200
committerJan Tojnar <jtojnar@gmail.com>2021-10-24 15:38:21 +0200
commit00ba9c33985dd9f426879fc48e68317861c6c898 (patch)
tree54dc39f9ad08ef21c31aea785b3dc8f0f0173c6e /pkgs/development/libraries/dleyna-server
parent3eeb9e70d06c2153f467e500bb4f9296c38333fc (diff)
downloadnixpkgs-00ba9c33985dd9f426879fc48e68317861c6c898.tar
nixpkgs-00ba9c33985dd9f426879fc48e68317861c6c898.tar.gz
nixpkgs-00ba9c33985dd9f426879fc48e68317861c6c898.tar.bz2
nixpkgs-00ba9c33985dd9f426879fc48e68317861c6c898.tar.lz
nixpkgs-00ba9c33985dd9f426879fc48e68317861c6c898.tar.xz
nixpkgs-00ba9c33985dd9f426879fc48e68317861c6c898.tar.zst
nixpkgs-00ba9c33985dd9f426879fc48e68317861c6c898.zip
dleyna-server: 0.6.0 → 0.7.1
Abandoned by Intel, new upstream.

https://github.com/phako/dleyna-server/compare/v0.6.0...v0.7.1
Diffstat (limited to 'pkgs/development/libraries/dleyna-server')
-rw-r--r--pkgs/development/libraries/dleyna-server/default.nix35
1 files changed, 14 insertions, 21 deletions
diff --git a/pkgs/development/libraries/dleyna-server/default.nix b/pkgs/development/libraries/dleyna-server/default.nix
index a0a414abf74..559ac866602 100644
--- a/pkgs/development/libraries/dleyna-server/default.nix
+++ b/pkgs/development/libraries/dleyna-server/default.nix
@@ -1,7 +1,8 @@
-{ lib, stdenv
+{ stdenv
+, lib
 , fetchFromGitHub
-, fetchpatch
-, autoreconfHook
+, meson
+, ninja
 , makeWrapper
 , pkg-config
 , dleyna-core
@@ -15,33 +16,25 @@
 
 stdenv.mkDerivation rec {
   pname = "dleyna-server";
-  version = "0.6.0";
+  version = "0.7.1";
 
   src = fetchFromGitHub {
-    owner = "01org";
+    owner = "phako";
     repo = pname;
-    rev = version;
-    sha256 = "13a2i6ms27s46yxdvlh2zm7pim7jmr5cylnygzbliz53g3gxxl3j";
+    rev = "v${version}";
+    sha256 = "bScgwJGPrCaLrw67WnvSpINgq5Vv9LJ/I0MUP9BeO2E=";
   };
 
-  patches = [
-    # fix build with gupnp 1.2
-    # https://github.com/intel/dleyna-server/pull/161
-    (fetchpatch {
-      url = "https://github.com/intel/dleyna-server/commit/96c01c88363d6e5e9b7519bc4e8b5d86cf783e1f.patch";
-      sha256 = "0p8fn331x2whvn6skxqvfzilx0m0yx2q5mm2wh2625l396m3fzmm";
-    })
-  ];
-
   nativeBuildInputs = [
-    autoreconfHook
+    meson
+    ninja
     pkg-config
     makeWrapper
   ];
 
   buildInputs = [
     dleyna-core
-    dleyna-connector-dbus
+    dleyna-connector-dbus # runtime dependency to be picked up to DLEYNA_CONNECTOR_PATH
     gssdp
     gupnp
     gupnp-av
@@ -56,9 +49,9 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "Library to discover, browse and manipulate Digital Media Servers";
-    homepage = "https://01.org/dleyna";
-    maintainers = [ maintainers.jtojnar ];
+    homepage = "https://github.com/phako/dleyna-server";
+    maintainers = with maintainers; [ jtojnar ];
     platforms = platforms.linux;
-    license = licenses.lgpl21;
+    license = licenses.lgpl21Only;
   };
 }