mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
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:
parent
c514182fd4
commit
01fc3e0525
@ -180,6 +180,7 @@
|
|||||||
viric = "Lluís Batlle i Rossell <viric@viric.name>";
|
viric = "Lluís Batlle i Rossell <viric@viric.name>";
|
||||||
vizanto = "Danny Wilson <danny@prime.vc>";
|
vizanto = "Danny Wilson <danny@prime.vc>";
|
||||||
vlstill = "Vladimír Štill <xstill@fi.muni.cz>";
|
vlstill = "Vladimír Štill <xstill@fi.muni.cz>";
|
||||||
|
vmandela = "Venkateswara Rao Mandela <venkat.mandela@gmail.com>";
|
||||||
vozz = "Oliver Hunt <oliver.huntuk@gmail.com>";
|
vozz = "Oliver Hunt <oliver.huntuk@gmail.com>";
|
||||||
winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>";
|
winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>";
|
||||||
wizeman = "Ricardo M. Correia <rcorreia@wizy.org>";
|
wizeman = "Ricardo M. Correia <rcorreia@wizy.org>";
|
||||||
|
22
pkgs/development/tools/grabserial/default.nix
Normal file
22
pkgs/development/tools/grabserial/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -5002,6 +5002,8 @@ let
|
|||||||
|
|
||||||
winpdb = callPackage ../development/tools/winpdb { };
|
winpdb = callPackage ../development/tools/winpdb { };
|
||||||
|
|
||||||
|
grabserial = callPackage ../development/tools/grabserial { };
|
||||||
|
|
||||||
|
|
||||||
### DEVELOPMENT / LIBRARIES
|
### DEVELOPMENT / LIBRARIES
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user