2021-01-17 10:17:16 +01:00
|
|
|
{ lib, stdenv, fetchurl, flac, fuse, lame, libid3tag, pkg-config }:
|
2015-01-09 04:49:18 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "mp3fs";
|
2016-01-24 20:31:44 +01:00
|
|
|
version = "0.91";
|
2015-01-09 04:49:18 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://github.com/khenriks/mp3fs/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2015-01-09 04:49:18 +01:00
|
|
|
sha256 = "14ngiqg24p3a0s6hp33zjl4i46d8qn4v9id36psycq3n3csmwyx4";
|
|
|
|
};
|
|
|
|
|
2015-04-17 15:53:33 +02:00
|
|
|
patches = [ ./fix-statfs-operation.patch ];
|
|
|
|
|
2015-06-17 19:36:06 +02:00
|
|
|
buildInputs = [ flac fuse lame libid3tag ];
|
2021-01-17 10:17:16 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2015-01-09 04:49:18 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-01-09 04:49:18 +01: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 03:11:51 +02:00
|
|
|
homepage = "https://khenriks.github.io/mp3fs/";
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl3Plus;
|
2021-03-25 17:39:56 +01:00
|
|
|
platforms = platforms.unix;
|
2015-01-09 04:49:18 +01:00
|
|
|
};
|
|
|
|
}
|