diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Revision history for cli-nix
 
+## 0.2.0.0
+
+* [#2](https://github.com/obsidiansystems/cli-nix) Add static paths for `nix-prefetch-url` and `nix-prefetch-git`.
+  **WARNING**: You will not be able to compile `cli-nix` unless these programs are in your `PATH`.
+  We strongly recommend using the included Nix files to build `cli-nix`.
+
 ## 0.1.0.1
 
 * Support GHC 8.8.4. Modify version bounds
diff --git a/cli-nix.cabal b/cli-nix.cabal
--- a/cli-nix.cabal
+++ b/cli-nix.cabal
@@ -1,9 +1,9 @@
 cabal-version:      >=1.10
 name:               cli-nix
-version:            0.1.1.0
+version:            0.2.0.0
 license:            BSD3
 license-file:       LICENSE
-copyright:          Obsidian Systems LLC 2020
+copyright:          Obsidian Systems LLC 2020 - 2022
 maintainer:         maintainer@obsidian.systems
 author:             Obsidian Systems LLC
 synopsis:           Bindings to the nix command-line interface
@@ -27,6 +27,7 @@
     , logging-effect  >=1.3.4   && <1.4
     , mtl             >=2.2.2   && <2.3
     , text            >=1.2.3.1 && <1.3
+    , which           >=0.2     && <0.3
   ghc-options: -Wall
 
 source-repository head
diff --git a/src/Bindings/Cli/Nix.hs b/src/Bindings/Cli/Nix.hs
--- a/src/Bindings/Cli/Nix.hs
+++ b/src/Bindings/Cli/Nix.hs
@@ -37,6 +37,9 @@
   , rawArg
   , runNixShellConfig
   , strArg
+
+  , nixPrefetchGitPath
+  , nixPrefetchUrlPath
   ) where
 
 import Control.Lens
@@ -54,6 +57,8 @@
 import Data.Monoid ((<>))
 import qualified Data.Text as T
 
+import System.Which (staticWhich)
+
 import Cli.Extras
 
 -- | What to build
@@ -236,3 +241,11 @@
       [ (\x -> ["on", T.pack x]) <$> path
       , (\a -> ["[" <> T.pack a <> "]"]) <$> (commonCfg ^. nixCmdConfig_target . target_attr)
       ]
+
+-- | Statically determined (at build-time) path to @nix-prefetch-git@.
+nixPrefetchGitPath :: FilePath
+nixPrefetchGitPath = $(staticWhich "nix-prefetch-git")
+
+-- | Statically determined (at build-time) path to @nix-prefetch-url@.
+nixPrefetchUrlPath :: FilePath
+nixPrefetchUrlPath = $(staticWhich "nix-prefetch-url")
