grabserial: add package

[Bjørn:
 * buildInputs -> propagatedBuildInputs, so pyserial is found at
   runtime
 * whitespace fix (add missing whitespace inside curly bracket)
]
This commit is contained in:
Venkateswara Rao Mandela 2015-01-22 22:47:41 +05:30 committed by Bjørn Forsman
parent c514182fd4
commit 01fc3e0525
3 changed files with 25 additions and 0 deletions

View file

@ -180,6 +180,7 @@
viric = "Lluís Batlle i Rossell <viric@viric.name>";
vizanto = "Danny Wilson <danny@prime.vc>";
vlstill = "Vladimír Štill <xstill@fi.muni.cz>";
vmandela = "Venkateswara Rao Mandela <venkat.mandela@gmail.com>";
vozz = "Oliver Hunt <oliver.huntuk@gmail.com>";
winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>";
wizeman = "Ricardo M. Correia <rcorreia@wizy.org>";

View file

@ -0,0 +1,22 @@
{ stdenv, fetchgit, buildPythonPackage, pythonPackages }:
buildPythonPackage rec {
name = "grabserial-20141120";
src = fetchgit {
url = https://github.com/tbird20d/grabserial.git;
rev = "8b9c98ea35d382bac2aafc7a8a9c02440369a792";
sha256 = "ff27f5e5ab38c8450a4a0291e943e6c5a265e56d29d6a1caa849ae3238d71679";
};
propagatedBuildInputs = [ pythonPackages.pyserial ];
meta = {
description = "Python based serial dump and timing program";
homepage = https://github.com/tbird20d/grabserial;
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ vmandela ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -5002,6 +5002,8 @@ let
winpdb = callPackage ../development/tools/winpdb { };
grabserial = callPackage ../development/tools/grabserial { };
### DEVELOPMENT / LIBRARIES