nixpkgs/pkgs/tools/misc/flameshot/default.nix
2018-03-03 22:28:43 -08:00

40 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, qtbase, qmake, qttools }:
stdenv.mkDerivation rec {
name = "flameshot-${version}";
version = "0.5.1";
nativeBuildInputs = [ qmake qttools ];
buildInputs = [ qtbase ];
qmakeFlags = [
# flameshot.pro assumes qmake is being run in a git checkout and uses it
# to determine the version being built. Let's replace that.
"VERSION=${version}"
"PREFIX=/"
];
patchPhase = ''
sed -i 's/VERSION =/#VERSION =/g' flameshot.pro
sed -i 's,USRPATH = /usr/local,USRPATH = /,g' flameshot.pro
'';
installFlags = [ "INSTALL_ROOT=$(out)" ];
src = fetchFromGitHub {
owner = "lupoDharkael";
repo = "flameshot";
rev = "v${version}";
sha256 = "13h77np93r796jf289v4r687cmnpqkyqs34dm9gif4akaig74ky0";
};
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Powerful yet simple to use screenshot software";
homepage = https://github.com/lupoDharkael/flameshot;
maintainers = [ maintainers.scode ];
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.linux;
};
}