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