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

72 lines
1.3 KiB
Nix
Raw Normal View History

2019-10-06 09:40:23 +00:00
{ stdenv
, fetchFromGitHub
, 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";
2019-11-20 10:45:56 +00:00
version = "0.3.1";
2019-10-06 09:40:23 +00:00
src = fetchFromGitHub {
owner = "Djaler";
repo = "Formatter";
rev = version;
2019-11-20 10:45:56 +00:00
sha256 = "1ghxd2h0pklhlrjslfr46vza1kjsm3mr0sdzzjiqi9jd6hddnk7i";
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
'';
meta = with stdenv.lib; {
description = "A simple formatter designed for elementary OS";
homepage = "https://github.com/Djaler/Formatter";
maintainers = with maintainers; [ kjuvi ] ++ pantheon.maintainers;
platforms = platforms.linux;
license = licenses.lgpl2Plus;
};
}