lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add gammu version 1.33.0 - a library and command line utility for interfacing phones

+43
+12
pkgs/applications/misc/gammu/bashcomp-dir.patch
··· 1 + diff -Naur gammu-1.33.0.orig/contrib/CMakeLists.txt gammu-1.33.0/contrib/CMakeLists.txt 2 + --- gammu-1.33.0.orig/contrib/CMakeLists.txt 2013-12-26 20:56:22.887772110 +0100 3 + +++ gammu-1.33.0/contrib/CMakeLists.txt 2013-12-26 20:57:04.386276037 +0100 4 + @@ -85,7 +85,7 @@ 5 + if (INSTALL_BASH_COMPLETION) 6 + install ( 7 + FILES bash-completion/gammu 8 + - DESTINATION "/etc/bash_completion.d" 9 + + DESTINATION "${CMAKE_INSTALL_PREFIX}/etc/bash_completion.d" 10 + COMPONENT "bash" 11 + ) 12 + endif (INSTALL_BASH_COMPLETION)
+29
pkgs/applications/misc/gammu/default.nix
··· 1 + { stdenv, fetchurl, python, pkgconfig, cmake, bluez, libusb1, curl 2 + , libiconv, gettext, sqlite }: 3 + 4 + with stdenv.lib; 5 + 6 + stdenv.mkDerivation rec { 7 + name = "gammu-${version}"; 8 + version = "1.33.0"; 9 + 10 + src = fetchurl { 11 + url = "http://sourceforge.net/projects/gammu/files/gammu/${version}/gammu-${version}.tar.xz"; 12 + sha256 = "18gplx1v9d70k1q86d5i4n4dfpx367g34pj3zscppx126vwhv112"; 13 + }; 14 + 15 + patches = [ ./bashcomp-dir.patch ]; 16 + 17 + buildInputs = [ python pkgconfig cmake bluez libusb1 curl libiconv 18 + gettext sqlite ]; 19 + 20 + enableParallelBuilding = true; 21 + 22 + meta = { 23 + homepage = "http://wammu.eu/gammu/"; 24 + description = "Command line utility and library to control mobil phones"; 25 + license = licenses.gpl2; 26 + platforms = platforms.linux; 27 + maintainers = [ maintainers.coroa ]; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 10151 10151 10152 10152 gajim = callPackage ../applications/networking/instant-messengers/gajim { }; 10153 10153 10154 + gammu = callPackage ../applications/misc/gammu { }; 10155 + 10154 10156 gensgs = callPackage_i686 ../misc/emulators/gens-gs { }; 10155 10157 10156 10158 ghostscript = callPackage ../misc/ghostscript {