nix-paths 1 → 1.0.0.1
raw patch · 2 files changed
+8/−8 lines, 2 files
Files
- nix-paths.cabal +8/−6
- src/Nix/FindFile.hs +0/−2
nix-paths.cabal view
@@ -1,21 +1,23 @@ name: nix-paths-version: 1+version: 1.0.0.1 synopsis: Knowledge of Nix's installation directories. description: This module provides full paths to various Nix utilities, like @nix-store@, @nix-instantiate@, and @nix-env@. category: Distribution-homepage: https://github.com/nixos/cabal2nix#readme-bug-reports: https://github.com/nixos/cabal2nix/issues-maintainer: Peter Simons <simons@cryp.to>+homepage: https://github.com/peti/nix-paths+bug-reports: https://github.com/peti/nix-paths/issues+author: Peter Simons+maintainer: simons@cryp.to license: BSD3 license-file: LICENSE build-type: Custom cabal-version: >= 1.10+tested-with: GHC > 7.2 && < 8.1 flag allow-relative-paths description: If any of the required Nix tools are missing at- build-time, compile a run-time @$PATH@ dependent+ build-time, compile a run-time $PATH dependent variant of this library instead of failing. This is useful for test environment such as Travis-CI, which may not have Nix installed.@@ -24,7 +26,7 @@ source-repository head type: git- location: https://github.com/nixos/cabal2nix+ location: https://github.com/peti/nix-paths library default-language: Haskell2010
src/Nix/FindFile.hs view
@@ -1,5 +1,3 @@-{-# LANGUAGE CPP #-}- module Nix.FindFile ( findFile, findFileWithDefault ) where import Nix.Paths ( nixInstantiate )