blob: d04aad2cc57ed60a55b7a655e79aa3f335c3c794 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
autoreconfHook,
fetchurl,
lib,
stdenv,
...
}:
stdenv.mkDerivation (finalAttrs: {
pname = "partclone-utils";
version = "0.4.3";
src = fetchurl {
url = "mirror://sourceforge/partclone-utils/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
sha256 = "sha256-HcmLT48mz9FmdO31Ti4uOT78tLEml4ezYWyp5fltkDA=";
};
nativeBuildInputs = [ autoreconfHook ];
meta = {
description = "library and utility to access and mount images generated by partclone, ntfsclone and raw (dd) images";
homepage = "https://partclone-utils.sourceforge.io/";
license = lib.licenses.gpl2;
mainProgram = "imagemount";
maintainers = [ lib.maintainers.johnrichardrinehart ];
};
})
|