Advertisement
Guest User

Untitled

a guest
Dec 6th, 2020 (edited)
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. { stdenv, fetchurl, perl }:
  2.  
  3. stdenv.mkDerivation {
  4. name = "hello-2.1.1";
  5. builder = ./builder.sh;
  6. src = fetchurl {
  7. url = ftp://ftp.nluug.nl/pub/gnu/hello/hello-2.1.1.tar.gz;
  8. sha256 = "ftp://ftp.nluug.nl/pub/gnu/hello/hello-2.1.1.tar.gz";
  9. };
  10. inherit perl;
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement