mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
28 lines
770 B
Nix
28 lines
770 B
Nix
{ lib, stdenv, fetchurl, dos2unix, which, qt, Carbon }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qscreenshot-1.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qscreenshot/${name}-src.tar.gz";
|
|
sha256 = "1spj5fg2l8p5bk81xsv6hqn1kcrdiy54w19jsfb7g5i94vcb1pcx";
|
|
};
|
|
|
|
buildInputs = [ dos2unix which qt ]
|
|
++ lib.optional stdenv.isDarwin Carbon;
|
|
|
|
# Remove carriage returns that cause /bin/sh to abort
|
|
preConfigure = ''
|
|
dos2unix configure
|
|
sed -i "s|lrelease-qt4|lrelease|" src/src.pro
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Simple creation and editing of screenshots";
|
|
homepage = "https://sourceforge.net/projects/qscreenshot/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|