nixpkgs/pkgs/applications/misc/markets/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.0 KiB
Nix
Raw Normal View History

2021-07-25 12:05:11 +00:00
{ 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";
2022-02-12 16:31:04 +00:00
version = "0.5.4";
2021-07-25 12:05:11 +00:00
src = fetchFromGitHub {
owner = "bitstower";
repo = "markets";
rev = version;
2022-02-12 16:31:04 +00:00
sha256 = "sha256-/g/r/1i69PmPND40zIID3Nun0I4ZFT1EFoNf1qprBjI=";
2021-07-25 12:05:11 +00:00
};
nativeBuildInputs = [
desktop-file-utils glib gtk3 meson ninja pkg-config python3 vala
wrapGAppsHook gobject-introspection
2021-07-25 12:05:11 +00:00
];
buildInputs = [
glib glib-networking gtk3 json-glib libgee libhandy
2021-07-25 12:05:11 +00:00
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;
};
}