nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 46 lines 857 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitLab, 5 gitUpdater, 6 autoreconfHook, 7 font-util, 8 util-macros, 9}: 10 11stdenv.mkDerivation (finalAttrs: { 12 pname = "font-alias"; 13 version = "1.0.5"; 14 15 src = fetchFromGitLab { 16 domain = "gitlab.freedesktop.org"; 17 group = "xorg"; 18 owner = "font"; 19 repo = "alias"; 20 tag = "font-alias-${finalAttrs.version}"; 21 hash = "sha256-qglRNSt/PgFprpsvOVCeLMA+YagJw8DZMAfFdZ0m0/s="; 22 }; 23 24 nativeBuildInputs = [ 25 autoreconfHook 26 font-util 27 util-macros 28 ]; 29 30 passthru = { 31 updateScript = gitUpdater { 32 rev-prefix = "font-alias-"; 33 }; 34 }; 35 36 meta = { 37 description = "Common aliases for Xorg fonts"; 38 homepage = "https://gitlab.freedesktop.org/xorg/font/alias"; 39 license = with lib.licenses; [ 40 cronyx 41 mit 42 ]; 43 maintainers = [ ]; 44 platforms = lib.platforms.all; 45 }; 46})