summary refs log tree commit diff
path: root/pkgs/applications/audio/flac
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/flac')
-rw-r--r--pkgs/applications/audio/flac/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/applications/audio/flac/default.nix b/pkgs/applications/audio/flac/default.nix
index 95ab8244478..0256eacc436 100644
--- a/pkgs/applications/audio/flac/default.nix
+++ b/pkgs/applications/audio/flac/default.nix
@@ -10,15 +10,14 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ libogg ];
 
-  doCheck = true; # takes lots of time but will be run rarely (small build-time closure)
-
-  enableParallelBuilding = true;
+  #doCheck = true; # takes lots of time
 
   outputs = [ "dev" "out" "bin" "doc" ];
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://xiph.org/flac/;
     description = "Library and tools for encoding and decoding the FLAC lossless audio file format";
-    platforms = stdenv.lib.platforms.all;
+    platforms = platforms.all;
+    maintainers = maintainers.mornfall;
   };
 }