tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
treewide: add meta.mainProgram to file-managers
Austin Horstman
2 years ago
919f5e13
aba58df4
+5
5 changed files
expand all
collapse all
unified
split
pkgs
applications
file-managers
krusader
default.nix
mc
default.nix
nnn
default.nix
pcmanfm
default.nix
ranger
default.nix
+1
pkgs/applications/file-managers/krusader/default.nix
···
43
description = "Norton/Total Commander clone for KDE";
44
license = licenses.gpl2Only;
45
maintainers = with maintainers; [ sander turion ];
0
46
};
47
}
···
43
description = "Norton/Total Commander clone for KDE";
44
license = licenses.gpl2Only;
45
maintainers = with maintainers; [ sander turion ];
46
+
mainProgram = "krusader";
47
};
48
}
+1
pkgs/applications/file-managers/mc/default.nix
···
93
license = licenses.gpl2Plus;
94
maintainers = with maintainers; [ sander ];
95
platforms = with platforms; linux ++ darwin;
0
96
};
97
}
···
93
license = licenses.gpl2Plus;
94
maintainers = with maintainers; [ sander ];
95
platforms = with platforms; linux ++ darwin;
96
+
mainProgram = "mc";
97
};
98
}
+1
pkgs/applications/file-managers/nnn/default.nix
···
78
license = licenses.bsd2;
79
platforms = platforms.all;
80
maintainers = with maintainers; [ jfrankenau Br1ght0ne ];
0
81
};
82
})
···
78
license = licenses.bsd2;
79
platforms = platforms.all;
80
maintainers = with maintainers; [ jfrankenau Br1ght0ne ];
81
+
mainProgram = "nnn";
82
};
83
})
+1
pkgs/applications/file-managers/pcmanfm/default.nix
···
39
description = "File manager with GTK interface";
40
maintainers = [ maintainers.ttuegel ];
41
platforms = platforms.linux;
0
42
};
43
}
···
39
description = "File manager with GTK interface";
40
maintainers = [ maintainers.ttuegel ];
41
platforms = platforms.linux;
42
+
mainProgram = "pcmanfm";
43
};
44
}
+1
pkgs/applications/file-managers/ranger/default.nix
···
55
license = licenses.gpl3Only;
56
platforms = platforms.unix;
57
maintainers = with maintainers; [ toonn magnetophon ];
0
58
};
59
}
···
55
license = licenses.gpl3Only;
56
platforms = platforms.unix;
57
maintainers = with maintainers; [ toonn magnetophon ];
58
+
mainProgram = "ranger";
59
};
60
}