-
-
Save dmalikov/237eddf700e5849b055f to your computer and use it in GitHub Desktop.
you prolly should just add '.' to the end of the path to make nix happy, obv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cabal.mkDerivation (self: { | |
pname = "cabal2nix"; | |
version = "0.1"; | |
src = /home/yep/git/cabal2nix/; | |
isLibrary = true; | |
$ nix-shell -p myHaskellPackages.cabal2nix | |
error: syntax error, unexpected ';', at /home/yep/.nixpkgs/cabal2nix/default.nix:14:32 | |
(use `--show-trace' to show detailed location information) | |
cabal.mkDerivation (self: { | |
pname = "cabal2nix"; | |
version = "0.1"; | |
src = /home/yep/git/cabal2nix/.; | |
isLibrary = true; | |
$ nix-shell -p myHaskellPackages.cabal2nix | |
these derivations will be built: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment