Merge branch 'master' into staging-next
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
This commit is contained in:
@@ -116,7 +116,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://www.argyllcms.com;
|
||||
description = "Color management system (compatible with ICC)";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.rickynils ];
|
||||
maintainers = [];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,32 +1,25 @@
|
||||
{ stdenv, fetchurl, fetchzip, giblib, xlibsWrapper }:
|
||||
{ stdenv, fetchFromGitHub, giblib, xlibsWrapper, autoreconfHook
|
||||
, autoconf-archive, libXfixes, libXcursor }:
|
||||
|
||||
let
|
||||
debPatch = fetchzip {
|
||||
url = mirror://debian/pool/main/s/scrot/scrot_0.8-18.debian.tar.xz;
|
||||
sha256 = "1m8m8ad0idf3nzw0k57f6rfbw8n7dza69a7iikriqgbrpyvxqybx";
|
||||
};
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "scrot-0.8-18";
|
||||
pname = "scrot";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://linuxbrit.co.uk/downloads/${name}.tar.gz";
|
||||
sha256 = "1wll744rhb49lvr2zs6m93rdmiq59zm344jzqvijrdn24ksiqgb1";
|
||||
src = fetchFromGitHub {
|
||||
owner = "resurrecting-open-source-projects";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "08gkdby0ysx2mki57z81zlm7vfnq9c1gq692xw67cg5vv2p3320w";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
for patch in $(cat ${debPatch}/patches/series); do
|
||||
patch -p1 < "${debPatch}/patches/$patch"
|
||||
done
|
||||
'';
|
||||
|
||||
buildInputs = [ giblib xlibsWrapper ];
|
||||
nativeBuildInputs = [ autoreconfHook autoconf-archive ];
|
||||
buildInputs = [ giblib xlibsWrapper libXfixes libXcursor ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://linuxbrit.co.uk/scrot/;
|
||||
description = "A command-line screen capture utility";
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ ];
|
||||
maintainers = with maintainers; [ globin ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
{ stdenv, fetchFromGitHub, qt5, fontconfig, freetype, libpng, zlib, libjpeg
|
||||
{ mkDerivation, lib, fetchFromGitHub, qtwebkit, qtsvg, qtxmlpatterns
|
||||
, fontconfig, freetype, libpng, zlib, libjpeg
|
||||
, openssl, libX11, libXext, libXrender }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
mkDerivation rec {
|
||||
version = "0.12.5";
|
||||
pname = "wkhtmltopdf";
|
||||
|
||||
@@ -15,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [
|
||||
fontconfig freetype libpng zlib libjpeg openssl
|
||||
libX11 libXext libXrender
|
||||
qt5.qtwebkit qt5.qtsvg qt5.qtxmlpatterns
|
||||
qtwebkit qtsvg qtxmlpatterns
|
||||
];
|
||||
|
||||
prePatch = ''
|
||||
@@ -28,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = https://wkhtmltopdf.org/;
|
||||
description = "Tools for rendering web pages to PDF or images";
|
||||
longDescription = ''
|
||||
|
||||
Reference in New Issue
Block a user