forked from mirrors/nixpkgs
cutecom: new expression
This commit is contained in:
parent
b34d63e722
commit
e47675db6a
18
pkgs/tools/misc/cutecom/default.nix
Normal file
18
pkgs/tools/misc/cutecom/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ stdenv, fetchurl, qt4, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cutecom-0.22.0";
|
||||
src = fetchurl {
|
||||
url = "http://cutecom.sourceforge.net/${name}.tar.gz";
|
||||
sha256 = "199fvl463nyn77r3nm8xgzgifs28j5759kkcnc5xbwww2nk20rhv";
|
||||
};
|
||||
buildInputs = [qt4 cmake];
|
||||
|
||||
meta = {
|
||||
description = "A graphical serial terminal";
|
||||
version = "0.22.0";
|
||||
homepage = http://cutecom.sourceforge.net/;
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
maintainers = [ stdenv.lib.maintainers.bennofs ];
|
||||
};
|
||||
}
|
|
@ -9807,6 +9807,8 @@ let
|
|||
imagemagick = imagemagick;
|
||||
};
|
||||
|
||||
cutecom = callPackage ../tools/misc/cutecom { };
|
||||
|
||||
cvs = callPackage ../applications/version-management/cvs { };
|
||||
|
||||
cvsps = callPackage ../applications/version-management/cvsps { };
|
||||
|
|
Loading…
Reference in a new issue