ddrescueview: init at 0.4alpha3
This commit is contained in:
parent
142a2289ff
commit
1c1e32ba00
39
pkgs/tools/system/ddrescueview/default.nix
Normal file
39
pkgs/tools/system/ddrescueview/default.nix
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{ stdenv, lib, fetchurl, fpc, lazarus, atk, cairo, gdk_pixbuf, glib, gtk2, libX11, pango }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ddrescueview-0.4alpha3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
name = "${name}.tar.xz";
|
||||||
|
url = "mirror://sourceforge/ddrescueview/ddrescueview-source-0.4%7Ealpha3.tar.xz";
|
||||||
|
sha256 = "0603jisxkswfyh93s3i20f8ns4yf83dmgmy0lg5001rvaw9mkw9j";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ fpc lazarus ];
|
||||||
|
|
||||||
|
buildInputs = [ atk cairo gdk_pixbuf glib gtk2 libX11 pango ];
|
||||||
|
|
||||||
|
sourceRoot = "source";
|
||||||
|
|
||||||
|
NIX_LDFLAGS = "--as-needed -rpath ${lib.makeLibraryPath buildInputs}";
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
lazbuild --lazarusdir=${lazarus}/share/lazarus ddrescueview.lpi
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -Dt $out/bin ddrescueview
|
||||||
|
cd ../resources/linux
|
||||||
|
install -Dt $out/share/applications ddrescueview.desktop
|
||||||
|
install -Dt $out/share/icons/hicolor/32x32/apps ddrescueview.xpm
|
||||||
|
install -Dt $out/share/man/man1 ddrescueview.1
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A tool to graphically examine ddrescue mapfiles";
|
||||||
|
homepage = https://sourceforge.net/projects/ddrescueview/;
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ orivej ];
|
||||||
|
};
|
||||||
|
}
|
@ -1993,6 +1993,8 @@ with pkgs;
|
|||||||
|
|
||||||
ddrescue = callPackage ../tools/system/ddrescue { };
|
ddrescue = callPackage ../tools/system/ddrescue { };
|
||||||
|
|
||||||
|
ddrescueview = callPackage ../tools/system/ddrescueview { };
|
||||||
|
|
||||||
deluge = callPackage ../applications/networking/p2p/deluge {
|
deluge = callPackage ../applications/networking/p2p/deluge {
|
||||||
pythonPackages = python2Packages;
|
pythonPackages = python2Packages;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user