2021-01-17 04:51:22 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, nix-update-script, meson, ninja, pkg-config, vala, pantheon, python3, libgee, gtk3, desktop-file-utils, wrapGAppsHook }:
|
2018-09-08 12:13:13 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "hashit";
|
2019-08-04 09:30:04 +02:00
|
|
|
version = "1.1.0";
|
2018-09-08 12:13:13 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "artemanufrij";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-08-04 09:30:04 +02:00
|
|
|
sha256 = "1s8fbzg1z2ypn55xg1pfm5xh15waq55fkp49j8rsqiq8flvg6ybf";
|
2018-09-08 12:13:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2018-10-31 23:04:02 +01:00
|
|
|
desktop-file-utils
|
2018-09-08 12:13:13 +02:00
|
|
|
meson
|
|
|
|
ninja
|
2019-10-10 04:47:37 +02:00
|
|
|
vala
|
2021-01-17 04:51:22 +01:00
|
|
|
pkg-config
|
2018-09-08 12:13:13 +02:00
|
|
|
python3
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2019-08-04 09:30:04 +02:00
|
|
|
gtk3
|
|
|
|
libgee
|
2018-08-20 22:31:18 +02:00
|
|
|
pantheon.elementary-icon-theme
|
|
|
|
pantheon.granite
|
2018-09-08 12:13:13 +02:00
|
|
|
];
|
|
|
|
|
2018-10-31 23:04:02 +01:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson/post_install.py
|
|
|
|
patchShebangs meson/post_install.py
|
|
|
|
'';
|
|
|
|
|
2019-12-23 00:19:30 +01:00
|
|
|
passthru = {
|
2020-07-29 18:33:39 +02:00
|
|
|
updateScript = nix-update-script {
|
2019-12-23 00:19:30 +01:00
|
|
|
attrPath = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-08-04 09:30:04 +02:00
|
|
|
description = "A simple app for checking usual checksums - Designed for elementary OS";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/artemanufrij/hashit";
|
2018-10-31 23:04:02 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2019-08-04 09:30:04 +02:00
|
|
|
maintainers = pantheon.maintainers;
|
2018-10-31 23:04:02 +01:00
|
|
|
platforms = platforms.linux;
|
2018-09-08 12:13:13 +02:00
|
|
|
};
|
|
|
|
}
|