diff options
author | Vincent Ambo <mail@tazj.in> | 2020-07-15T07·20+0100 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2020-07-15T07·23+0100 |
commit | 1213b086a1015a662ab7ebd658f784534fd3116a (patch) | |
tree | d3bc8f3b7f40b8b60f0ef6fbd649cf765f4fdfb6 /third_party/immer/nix/docs.nix | |
parent | 1390827b9ea1e04bc9863e48930bfd16db3b716e (diff) | |
parent | 7f19d641647ac4ef313ed88d6b5c140983ce5436 (diff) |
merge(3p/immer): Subtree merge at 'ad3e3556d' as 'third_party/immer' r/1299
Change-Id: I9636a41ad44b4218293833fd3e9456d9b07c731b
Diffstat (limited to 'third_party/immer/nix/docs.nix')
-rw-r--r-- | third_party/immer/nix/docs.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/third_party/immer/nix/docs.nix b/third_party/immer/nix/docs.nix new file mode 100644 index 000000000000..f885e6d9e177 --- /dev/null +++ b/third_party/immer/nix/docs.nix @@ -0,0 +1,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; +} |