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

79 lines
1.4 KiB
Nix
Raw Normal View History

2019-10-06 09:40:23 +00:00
{ stdenv
, fetchFromGitHub
, nix-update-script
2019-10-06 09:40:23 +00:00
, meson
, ninja
, vala
2019-10-06 09:40:23 +00:00
, pkgconfig
, pantheon
, python3
, substituteAll
, glib
, gtk3
, dosfstools
, e2fsprogs
, exfat
, hfsprogs
, ntfs3g
, libgee
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "formatter";
2020-01-05 20:00:32 +00:00
version = "0.3.2";
2019-10-06 09:40:23 +00:00
src = fetchFromGitHub {
owner = "Djaler";
repo = "Formatter";
rev = version;
2020-01-05 20:00:32 +00:00
sha256 = "0da1dvzsvbwg1ys19yf0n080xc0hjwin9zacjndb24jvphy3bxql";
2019-10-06 09:40:23 +00:00
};
patches = [
(substituteAll {
src = ./fix-paths.patch;
ext4 = "${e2fsprogs}/bin/mkfs.ext4";
exfat = "${exfat}/bin/mkfs.exfat";
fat = "${dosfstools}/bin/mkfs.fat";
ntfs = "${ntfs3g}/bin/mkfs.ntfs";
hfsplus = "${hfsprogs}/bin/mkfs.hfsplus";
})
];
nativeBuildInputs = [
meson
ninja
vala
2019-10-06 09:40:23 +00:00
pkgconfig
python3
wrapGAppsHook
];
buildInputs = [
glib
gtk3
libgee
pantheon.granite
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
2019-12-22 23:19:30 +00:00
passthru = {
updateScript = nix-update-script {
2019-12-22 23:19:30 +00:00
attrPath = pname;
};
};
2019-10-06 09:40:23 +00:00
meta = with stdenv.lib; {
description = "A simple formatter designed for elementary OS";
homepage = "https://github.com/Djaler/Formatter";
2020-05-08 07:08:53 +00:00
maintainers = with maintainers; [ xiorcale ] ++ pantheon.maintainers;
2019-10-06 09:40:23 +00:00
platforms = platforms.linux;
license = licenses.lgpl2Plus;
};
}