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: 157eb22351f9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3432fa3fd519
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on May 17, 2018

  1. bashplotlib: init at 2017-10-11 (#40685)

    dtzWill authored and xeji committed May 17, 2018
    Copy the full SHA
    3432fa3 View commit details
Showing with 25 additions and 0 deletions.
  1. +23 −0 pkgs/tools/misc/bashplotlib/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
23 changes: 23 additions & 0 deletions pkgs/tools/misc/bashplotlib/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ stdenv, pythonPackages, fetchFromGitHub }:

pythonPackages.buildPythonApplication rec {
pname = "bashplotlib-${version}";
version = "2017-10-11";

src = fetchFromGitHub {
owner = "glamp";
repo = "bashplotlib";
rev = "fdc52be2c1fed13753692eced328143ab1db6f3d";
sha256 = "1ycql6j65zywyav2n3c0x1i5cm9w6glzqc3v0cgdvv1bdg4wi0gf";
};

# No tests
doCheck = false;

meta = with stdenv.lib; {
homepage = https://github.com/glamp/bashplotlib;
description = "Plotting in the terminal";
maintainers = with maintainers; [ dtzWill ];
license = licenses.mit;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -784,6 +784,8 @@ with pkgs;

basex = callPackage ../tools/text/xml/basex { };

bashplotlib = callPackage ../tools/misc/bashplotlib { };

babeld = callPackage ../tools/networking/babeld { };

badvpn = callPackage ../tools/networking/badvpn {};