mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
43 lines
1 KiB
Nix
43 lines
1 KiB
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, desktop-file-utils, glib, gtk3, meson, ninja, pkg-config, python3, vala
|
|
, wrapGAppsHook
|
|
, glib-networking, gobject-introspection, json-glib, libgee, libhandy, libsoup
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "markets";
|
|
version = "0.5.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bitstower";
|
|
repo = "markets";
|
|
rev = version;
|
|
sha256 = "0sfdmz7cp8i2bymippp8jyxsidxjn69v9cqm40q77j81kfm84bfv";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
desktop-file-utils glib gtk3 meson ninja pkg-config python3 vala
|
|
wrapGAppsHook
|
|
];
|
|
buildInputs = [
|
|
glib glib-networking gobject-introspection gtk3 json-glib libgee libhandy
|
|
libsoup
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs build-aux/meson/postinstall.py
|
|
'';
|
|
|
|
postInstall = ''
|
|
ln -s bitstower-markets $out/bin/markets
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/bitstower/markets";
|
|
description = "Stock, currency and cryptocurrency tracker";
|
|
maintainers = with maintainers; [ qyliss ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|