-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem: software feels very uncomfortable to use #270
Comments
At the moment I have something like this: { pkgs ? import <nixpkgs> {}
, racket2nix ? pkgs.fetchFromGitHub {
owner = "fractalide"; repo = "racket2nix";
rev = "0cafac6fbebed544c6118a53fce3d0972c900769";
sha256 = "142kh5ispik87fah5wgvnaih3yqg1ajqpb0ipaxbxv7wrdmn0ziw"; }
}:
with pkgs;
let
inherit (racket2nix) buildRacketPackage;
latex = texlive.combine { inherit (texlive) scheme-full;};
pdf = (buildRacketPackage (builtins.path {
name = "pdf";
path = ./.;
})).overrideAttrs (oldAttrs: {
buildInputs = oldAttrs.buildInputs or [] ++ [ latex ];
postInstall = oldAttrs.postInstall or "" + ''
scribble --pdf pdf.scrbl
mkdir $out
mv pdf.pdf $out
'';
});
in
pdf and I get this error:
|
The first thing: Yeah, the big thing missing here is a nice |
The second thing: It needs to be If you don't rely on any specific packages in your
But if you are documenting an API and you need a bunch of collections installed to interpret the |
Is there a way I can do something like this:
The text was updated successfully, but these errors were encountered: