Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 58cfd06862cd
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9e5e9db4ad8d
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 25, 2019

  1. Copy the full SHA
    74f56f4 View commit details
  2. Merge pull request #71974 from seqizz/g_vimwiki_markdown

    vimwiki-markdown: init at 0.2.0
    rasendubi authored Oct 25, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9e5e9db View commit details
Showing with 30 additions and 0 deletions.
  1. +28 −0 pkgs/tools/misc/vimwiki-markdown/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
28 changes: 28 additions & 0 deletions pkgs/tools/misc/vimwiki-markdown/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ stdenv
, buildPythonApplication
, fetchPypi
, markdown
, pygments
}:

buildPythonApplication rec {
version = "0.2.0";
pname = "vimwiki-markdown";

src = fetchPypi {
inherit version pname;
sha256 = "0k7srlglhq4bm85kgd5ismslrk1fk8v16mm41a8k0kmcr9k4vi4a";
};

propagatedBuildInputs= [
markdown
pygments
];

meta = with stdenv.lib; {
description = "Vimwiki markdown plugin";
homepage = https://github.com/WnP/vimwiki_markdown;
license = licenses.mit;
maintainers = with maintainers; [ seqizz ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -6807,6 +6807,8 @@ in
vimpager = callPackage ../tools/misc/vimpager { };
vimpager-latest = callPackage ../tools/misc/vimpager/latest.nix { };

vimwiki-markdown = python3Packages.callPackage ../tools/misc/vimwiki-markdown { };

visidata = (newScope python3Packages) ../applications/misc/visidata {
};