9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
27 lines
861 B
Nix
27 lines
861 B
Nix
{ lib, stdenv, fetchgit
|
|
, sqlite, expat, mp4v2, flac, spidermonkey_68, taglib, libexif, curl, ffmpeg_3, file
|
|
, pkg-config, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mediatomb";
|
|
version = "0.12.1";
|
|
|
|
src = fetchgit {
|
|
url = meta.repositories.git;
|
|
rev = "7ab761696354868bd5d67ff4f2d849994e4c98e2";
|
|
sha256 = "1mimslr4q6mky865y6561rr64cbn4gf0qc2dhgb31hxp4rc1kmzd";
|
|
};
|
|
|
|
buildInputs = [ sqlite expat spidermonkey_68 taglib libexif curl ffmpeg_3 file mp4v2 flac
|
|
pkg-config autoreconfHook ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://mediatomb.cc";
|
|
repositories.git = "git://mediatomb.git.sourceforge.net/gitroot/mediatomb/mediatomb";
|
|
description = "UPnP MediaServer with a web user interface";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.phreedom ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|