2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, flac, fuse, lame, libid3tag, pkg-config }:
|
2015-01-09 03:49:18 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mp3fs";
|
2016-01-24 19:31:44 +00:00
|
|
|
version = "0.91";
|
2015-01-09 03:49:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://github.com/khenriks/mp3fs/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2015-01-09 03:49:18 +00:00
|
|
|
sha256 = "14ngiqg24p3a0s6hp33zjl4i46d8qn4v9id36psycq3n3csmwyx4";
|
|
|
|
};
|
|
|
|
|
2015-04-17 14:53:33 +01:00
|
|
|
patches = [ ./fix-statfs-operation.patch ];
|
|
|
|
|
2015-06-17 18:36:06 +01:00
|
|
|
buildInputs = [ flac fuse lame libid3tag ];
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2015-01-09 03:49:18 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-01-09 03:49:18 +00:00
|
|
|
description = "FUSE file system that transparently transcodes to MP3";
|
|
|
|
longDescription = ''
|
|
|
|
A read-only FUSE filesystem which transcodes between audio formats
|
|
|
|
(currently only FLAC to MP3) on the fly when files are opened and read.
|
|
|
|
It can let you use a FLAC collection with software and/or hardware
|
|
|
|
which only understands the MP3 format, or transcode files through
|
|
|
|
simple drag-and-drop in a file browser.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://khenriks.github.io/mp3fs/";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2021-03-25 16:39:56 +00:00
|
|
|
platforms = platforms.unix;
|
2015-01-09 03:49:18 +00:00
|
|
|
};
|
|
|
|
}
|