fontmatrix: Changed URL & homepage; they no longer exist
This commit is contained in:
parent
dd49357a19
commit
4024c6354e
@ -1,10 +1,14 @@
|
|||||||
{ stdenv, fetchurl, cmake, qt4 }:
|
{ stdenv, fetchFromGitHub, cmake, qt4 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "fontmatrix-0.6.0";
|
name = "fontmatrix-${version}";
|
||||||
src = fetchurl {
|
version = "0.6.0";
|
||||||
url = "http://fontmatrix.be/archives/${name}-Source.tar.gz";
|
|
||||||
sha256 = "bcc5e929d95d2a0c9481d185144095c4e660255220a7ae6640298163ee77042c";
|
src = fetchFromGitHub {
|
||||||
|
owner = "fontmatrix";
|
||||||
|
repo = "fontmatrix";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0aqndj1jhm6hjpwmj1qm92z2ljh7w78a5ff5ag47qywqha1ngn05";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ qt4 ];
|
buildInputs = [ qt4 ];
|
||||||
@ -13,10 +17,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Fontmatrix is a free/libre font explorer for Linux, Windows and Mac";
|
description = "Fontmatrix is a free/libre font explorer for Linux, Windows and Mac";
|
||||||
homepage = http://fontmatrix.be/;
|
homepage = http://github.com/fontmatrix/fontmatrix;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user