mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
ed867a50eb
This fixes builds after #4419. Thanks to @vbgl for the original commit; I changed that as I'm not sure whether passing null values to buildInputs is clean. CC maintainers: @coroa, @peti, @phreedom, @robberer, @jcumming.
29 lines
809 B
Nix
29 lines
809 B
Nix
{ stdenv, fetchurl, python, pkgconfig, cmake, bluez, libusb1, curl
|
|
, libiconvOrEmpty, gettext, sqlite }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gammu-${version}";
|
|
version = "1.33.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://sourceforge.net/projects/gammu/files/gammu/${version}/gammu-${version}.tar.xz";
|
|
sha256 = "18gplx1v9d70k1q86d5i4n4dfpx367g34pj3zscppx126vwhv112";
|
|
};
|
|
|
|
patches = [ ./bashcomp-dir.patch ];
|
|
|
|
buildInputs = [ python pkgconfig cmake bluez libusb1 curl gettext sqlite ]
|
|
++ libiconvOrEmpty;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = "http://wammu.eu/gammu/";
|
|
description = "Command line utility and library to control mobil phones";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.coroa ];
|
|
};
|
|
}
|