mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
27 lines
630 B
Nix
27 lines
630 B
Nix
{ stdenv, fetchFromGitHub, cmake, qt4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fontmatrix";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fontmatrix";
|
|
repo = "fontmatrix";
|
|
rev = "v${version}";
|
|
sha256 = "0aqndj1jhm6hjpwmj1qm92z2ljh7w78a5ff5ag47qywqha1ngn05";
|
|
};
|
|
|
|
buildInputs = [ qt4 ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Fontmatrix is a free/libre font explorer for Linux, Windows and Mac";
|
|
homepage = https://github.com/fontmatrix/fontmatrix;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|