mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
328da81b30
- fetchdarcs_2pre added - flapjax added - no longer used : annotatedDerivations - added bleeding edge repos with a tiny nix repository manager which dowloads and updates repostiries, then creates tar.gz dist files which are used by bleeding_edge_source (darcs tested only by now) - added experimental my_environment with example svn path=/nixpkgs/branches/stdenv-updates/; revision=10973
17 lines
976 B
Nix
17 lines
976 B
Nix
{
|
|
# each repository has
|
|
# a type, url and maybe a tag
|
|
# you can add group names to update some repositories at once (needs some testing)
|
|
# see nix_repository_manager expression in all-packages.nix
|
|
|
|
http = { type= "darcs"; url="http://darcs.haskell.org/http/"; group="happs"; };
|
|
syb_with_class = { type="darcs"; url="http://happs.org/HAppS/syb-with-class"; group="happs"; };
|
|
happs_data = { type="darcs"; url=http://happs.org/repos/HAppS-Data; group="happs"; };
|
|
happs_util = { type="darcs"; url=http://happs.org/repos/HAppS-Util; group="happs"; };
|
|
happs_state = { type="darcs"; url=http://happs.org/repos/HAppS-State; group="happs"; };
|
|
happs_plugins = { type="darcs"; url=http://happs.org/repos/HAppS-Plugins; group="happs"; };
|
|
happs_ixset = { type="darcs"; url=http://happs.org/repos/HAppS-IxSet; group="happs"; };
|
|
happs_server = { type="darcs"; url=http://happs.org/repos/HAppS-HTTP; group="happs"; };
|
|
cabal = { type="darcs"; url=http://darcs.haskell.org/cabal; };
|
|
}
|