nixpkgs/pkgs/tools/filesystems/mp3fs/default.nix
Tobias Geerinckx-Rice 9fb8020e4e Add version attribute where maintainers |= nckx
This will probably be mandatory soon, and is a step in the right
direction. Removes the deprecated meta.version, and move some meta
sections to the end of the file where I should have put them in
the first place.
2016-01-25 17:35:21 +01:00

34 lines
1.1 KiB
Nix

{ stdenv, fetchurl, flac, fuse, lame, libid3tag, pkgconfig }:
stdenv.mkDerivation rec {
name = "mp3fs-${version}";
version = "0.91";
src = fetchurl {
url = "https://github.com/khenriks/mp3fs/releases/download/v${version}/${name}.tar.gz";
sha256 = "14ngiqg24p3a0s6hp33zjl4i46d8qn4v9id36psycq3n3csmwyx4";
};
patches = [ ./fix-statfs-operation.patch ];
buildInputs = [ flac fuse lame libid3tag ];
nativeBuildInputs = [ pkgconfig ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
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.
'';
homepage = http://khenriks.github.io/mp3fs/;
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
}