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: 17a4f0f75636
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 970a3e37abfb
Choose a head ref
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Aug 13, 2017

  1. Literate: init

    RocketPuppy committed Aug 13, 2017
    Copy the full SHA
    02d52d8 View commit details

Commits on Aug 27, 2017

  1. Copy the full SHA
    916f1a0 View commit details

Commits on Jan 13, 2018

  1. Merge pull request #28224 from RocketPuppy/add-literate

    Literate: init at 2017-05-28
    joachifm authored Jan 13, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    970a3e3 View commit details
Showing with 24 additions and 0 deletions.
  1. +22 −0 pkgs/development/tools/literate-programming/Literate/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
22 changes: 22 additions & 0 deletions pkgs/development/tools/literate-programming/Literate/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ stdenv, fetchgit, dmd, dub }:

stdenv.mkDerivation {
name = "Literate-2017-05-28";

src = fetchgit {
url = "https://github.com/zyedidia/Literate.git";
rev = "23928d64bb19b5101dbcc794da6119beaf59f679";
sha256 = "094lramvacarzj8443ns18zyv7dxnivwi7kdk5xi5r2z4gx338iq";
};

buildInputs = [ dmd dub ];

installPhase = "install -D bin/lit $out/bin/lit";

meta = with stdenv.lib; {
description = "A literate programming tool for any language";
homepage = http://literate.zbyedidia.webfactional.com/;
license = licenses.mit;
platforms = platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -7588,6 +7588,8 @@ with pkgs;

kube-aws = callPackage ../development/tools/kube-aws { };

Literate = callPackage ../development/tools/literate-programming/Literate {};

lcov = callPackage ../development/tools/analysis/lcov { };

leiningen = callPackage ../development/tools/build-managers/leiningen { };