File: docs.nix

package info (click to toggle)
immer 0.8.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 5,132 kB
  • sloc: cpp: 27,932; python: 534; makefile: 227; lisp: 175; sh: 114; javascript: 64
file content (27 lines) | stat: -rw-r--r-- 767 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ nixpkgs ? <nixpkgs>}:

with import nixpkgs {};

rec {
  breathe = with python27Packages; buildPythonPackage rec {
    version = "git-arximboldi-${commit}";
    pname = "breathe";
    name = "${pname}-${version}";
    commit = "5074aecb5ad37bb70f50216eaa01d03a375801ec";
    src = fetchFromGitHub {
      owner = "arximboldi";
      repo = "breathe";
      rev = commit;
      sha256 = "10kkh3wb0ggyxx1a7x50aklhhw0cq269g3jddf2gb3pv9gpbj7sa";
    };
    propagatedBuildInputs = [ docutils sphinx ];
    meta = with stdenv.lib; {
      homepage = https://github.com/michaeljones/breathe;
      license = licenses.bsd3;
      description = "Sphinx Doxygen renderer";
      inherit (sphinx.meta) platforms;
    };
  };

  recommonmark = python27Packages.recommonmark;
}