commit
d943490dc9
@ -34,9 +34,10 @@ stdenv.mkDerivation rec {
|
|||||||
cp ${gnu-config}/config.guess configure.guess
|
cp ${gnu-config}/config.guess configure.guess
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://xiph.org/paranoia;
|
homepage = https://xiph.org/paranoia;
|
||||||
description = "A tool and library for reading digital audio from CDs";
|
description = "A tool and library for reading digital audio from CDs";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
license = with licenses; [ gpl2Plus lgpl21Plus ];
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = https://xiph.org/flac/;
|
homepage = https://xiph.org/flac/;
|
||||||
description = "Library and tools for encoding and decoding the FLAC lossless audio file format";
|
description = "Library and tools for encoding and decoding the FLAC lossless audio file format";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = [ ];
|
license = licenses.bsd3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -84,6 +84,7 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = http://www.imagemagick.org/;
|
homepage = http://www.imagemagick.org/;
|
||||||
description = "A software suite to create, edit, compose, or convert bitmap images";
|
description = "A software suite to create, edit, compose, or convert bitmap images";
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ the-kenny wkennington ];
|
maintainers = with maintainers; [ the-kenny wkennington ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,10 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = [unzip];
|
buildInputs = [unzip];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.unix;
|
description = "Java based toolkit for handling SVG";
|
||||||
|
homepage = https://xmlgraphics.apache.org/batik;
|
||||||
|
license = licenses.asl20;
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -28,10 +28,11 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Gnome Diagram drawing software";
|
description = "Gnome Diagram drawing software";
|
||||||
homepage = http://live.gnome.org/Dia;
|
homepage = http://live.gnome.org/Dia;
|
||||||
maintainers = with stdenv.lib.maintainers; [raskin];
|
maintainers = with maintainers; [ raskin ];
|
||||||
platforms = stdenv.lib.platforms.unix;
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,9 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = https://github.com/mattes/epeg;
|
homepage = https://github.com/mattes/epeg;
|
||||||
description = "Insanely fast JPEG/ JPG thumbnail scaling";
|
description = "Insanely fast JPEG/ JPG thumbnail scaling";
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
|
license = {
|
||||||
|
url = "https://github.com/mattes/epeg#license";
|
||||||
|
};
|
||||||
maintainers = with maintainers; [ nh2 ];
|
maintainers = with maintainers; [ nh2 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -18,9 +18,10 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A fast image viewer";
|
description = "A fast image viewer";
|
||||||
homepage = http://gqview.sourceforge.net;
|
homepage = http://gqview.sourceforge.net;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ ];
|
license = licenses.gpl3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -17,10 +17,11 @@ stdenv.mkDerivation (rec {
|
|||||||
substituteInPlace Makefile --replace /man/ /share/man/
|
substituteInPlace Makefile --replace /man/ /share/man/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Quick image viewer";
|
description = "Quick image viewer";
|
||||||
homepage = http://spiegl.de/qiv/;
|
homepage = http://spiegl.de/qiv/;
|
||||||
inherit version;
|
inherit version;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user