summaryrefslogtreecommitdiff
path: root/overlays/00-lang.nix
blob: 2a2cb28c047f7d1ffae33fa9a712787f1a1c545b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
self: super:
{
  langOverlay = self.buildEnv {
    name = "langOverlay";
    ignoreCollisions = true;
    paths = [
      self.autoconf
      self.autogen
      self.automake
      self.doxygen
      self.global
      self.gnum4
      self.gnumake
      self.lcov
      self.libtool
      self.pkgconfig
    ];
  };
}