mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Adding pipe viewer.
svn path=/nixpkgs/trunk/; revision=14643
This commit is contained in:
parent
a117d3ac9a
commit
e7dc9a15ae
16
pkgs/tools/misc/pv/default.nix
Normal file
16
pkgs/tools/misc/pv/default.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ stdenv, fetchurl } :
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pv-1.1.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://pipeviewer.googlecode.com/files/pv-1.1.4.tar.bz2;
|
||||
sha256 = "c8613c240ab4297f6ad346f0047138f551a093c603eeb581d5e83091cad3a559";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://www.ivarch.com/programs/pv;
|
||||
description = "Tool for monitoring the progress of data through a pipeline";
|
||||
license = "free";
|
||||
};
|
||||
}
|
@ -1109,6 +1109,10 @@ let
|
||||
inherit stdenv fetchurl ncurses;
|
||||
};
|
||||
|
||||
pv = import ../tools/misc/pv {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
pwgen = import ../tools/security/pwgen {
|
||||
inherit stdenv fetchurl;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user