Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
36 lines
879 B
Nix
36 lines
879 B
Nix
{ stdenv, lib, fetchFromGitHub, fftw
|
|
, qtbase, qmake, wrapQtAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "smartdeblur";
|
|
version = "unstable-2018-10-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Y-Vladimir";
|
|
repo = "SmartDeblur";
|
|
rev = "5af573c7048ac49ef68e638f3405d3a571b96a8b";
|
|
sha256 = "151vdd5ld0clw0vgp0fvp2gp2ybwpx9g43dad9fvbvwkg60izs87";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/src";
|
|
|
|
nativeBuildInputs = [ qmake wrapQtAppsHook ];
|
|
buildInputs = [ qtbase fftw ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 ./SmartDeblur -t $out/bin
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Y-Vladimir/SmartDeblur";
|
|
description = "Tool for restoring blurry and defocused images";
|
|
mainProgram = "SmartDeblur";
|
|
license = licenses.gpl3;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|