contents of my *~/.config/* directory
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
dotfiles/nixpkgs/mtp2lite.nix

13 lines
373 B

with import <nixpkgs>{};
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
'';
}