Hacker News new | ask | show | jobs
by whateveracct 1843 days ago
You write some Nix code to download said tarball and build it as you said. In fact, the ever present `mkDerivation` often Just Works for autotools and cmake projects.
1 comments

You can also specify paths to local sources, of course! Instead of src = fetchgit... or whatever, you can just write

  src = ./some-source-dir;
or

  src = ./.;
or whatever