nixpkgs/overlays/rst2pdf/default.nix
Daniel Siepmann 1804902632
Migrate rst2pdf to callPackage
More or less in order to have a show case and working example.
There is no huge benefit in that case.
But it demonstrates that a default.nix could call callPackage and
benefit from 1:1 copy of nixpkgs package definition.
Also eases debugging of the derivation / package.
2022-02-11 08:38:17 +01:00

4 lines
65 B
Nix

self: super: {
rst2pdf = self.callPackage ./rst2pdf.nix { };
}