with import {}; stdenv.mkDerivation rec { name = "mtp2lite"; # name of the package sourceRoot = "."; src = fetchurl { # there's also fetchgit and other helpers url = "http://mirrors.ctan.org/fonts/mtp2lite.zip"; sha256 = "807RgMx5c7ynXudkFGKh4AYX/KfUe4Ypx/PQR+OEed8="; }; buildInputs = [ pkgs.unzip ]; installPhase = '' ls mtp2lite ''; }