Unverified Commit 8d81e1a9 authored by Sizhe Zhao's avatar Sizhe Zhao
Browse files

dsf2flac: avoid with lib;

parent ecb8f8a9
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -43,11 +43,11 @@ stdenv.mkDerivation {

  configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ];

  meta = with lib; {
  meta = {
    description = "DSD to FLAC transcoding tool";
    homepage = "https://github.com/hank/dsf2flac";
    license = licenses.gpl2;
    maintainers = with maintainers; [ artemist ];
    license = lib.licenses.gpl2;
    maintainers = with lib.maintainers; [ artemist ];
    platforms = [ "x86_64-linux" ];
    mainProgram = "dsf2flac";
  };