Guest User

Untitled

a guest
Apr 25th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.43 KB | None | 0 0
  1. with
  2.   import <nixpkgs> {}
  3. ;
  4.  
  5. stdenv.mkDerivation {
  6.   name = "pplatex";
  7.   version = "1.0-rc2";
  8.  
  9.   src = fetchFromGitHub {
  10.     owner = "stefanhepp";
  11.     repo = "pplatex";
  12.     rev = "25bf7e121178f1fee2452b4fa9961248a045a387";
  13.     sha256 = "0xw7nvi2l15iyp9sm8vmmqghi54v99bcivqvx89f5v2gw0kw47k3";
  14.   };
  15.  
  16.   buildInputs = [ pkgs.scons pkgs.pcre pkgs.texlive.combined.scheme-small ];
  17.  
  18.   buildPhase = ''
  19.     scons
  20.   '';
  21. }
Add Comment
Please, Sign In to add comment