tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
grandperspective: remove `with lib;`
Dimitar Nestorov
1 year ago
0cb7e95f
0bc3a893
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
gr
grandperspective
package.nix
+5
-5
pkgs/by-name/gr/grandperspective/package.nix
···
49
'';
50
});
51
52
-
meta = with lib; {
53
description = "Open-source macOS application to analyze disk usage";
54
longDescription = ''
55
GrandPerspective is a small utility application for macOS that graphically shows the disk usage within a file
···
59
'';
60
mainProgram = "grandperspective";
61
homepage = "https://grandperspectiv.sourceforge.net";
62
-
license = licenses.gpl2Only;
63
-
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
64
-
maintainers = with maintainers; [
65
eliandoran
66
DimitarNestorov
67
];
68
-
platforms = platforms.darwin;
69
};
70
71
})
···
49
'';
50
});
51
52
+
meta = {
53
description = "Open-source macOS application to analyze disk usage";
54
longDescription = ''
55
GrandPerspective is a small utility application for macOS that graphically shows the disk usage within a file
···
59
'';
60
mainProgram = "grandperspective";
61
homepage = "https://grandperspectiv.sourceforge.net";
62
+
license = lib.licenses.gpl2Only;
63
+
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
64
+
maintainers = with lib.maintainers; [
65
eliandoran
66
DimitarNestorov
67
];
68
+
platforms = lib.platforms.darwin;
69
};
70
71
})