telepathy-mission-control: format with nixpkgs-format
This commit is contained in:
parent
4cd2cb43fb
commit
79ccc48169
|
@ -1,17 +1,31 @@
|
|||
{ stdenv, fetchurl, pkgconfig, gnome3, telepathy-glib, libxslt, makeWrapper }:
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, pkgconfig
|
||||
, gnome3
|
||||
, telepathy-glib
|
||||
, libxslt
|
||||
, makeWrapper
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-5.16.4";
|
||||
pname = "telepathy-mission-control";
|
||||
version = "5.16.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz";
|
||||
url = "https://telepathy.freedesktop.org/releases/${pname}/${pname}-${version}.tar.gz";
|
||||
sha256 = "1jz6wwgsfxixha6ys2hbzbk5faqnj9kh2m5qdlgx5anqgandsscp";
|
||||
};
|
||||
|
||||
buildInputs = [ telepathy-glib telepathy-glib.python ]; # ToDo: optional stuff missing
|
||||
buildInputs = [
|
||||
telepathy-glib
|
||||
telepathy-glib.python
|
||||
]; # ToDo: optional stuff missing
|
||||
|
||||
nativeBuildInputs = [ pkgconfig libxslt makeWrapper ];
|
||||
nativeBuildInputs = [
|
||||
pkgconfig
|
||||
libxslt
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
|
|
Loading…
Reference in New Issue