removing old bleeding edge cruft replacing it by a niftier version using

source regions which are substituded by the tool nix-repository-manager.
See http://github.com/MarcWeber/nix-repository-manager/raw/master/README.

sourceByName is called sourceFromHead now.

updates: MPlayerTrunk, haxe, neko, netsurf, cinelerra, ctags
cinelerra does no longer build due to Xorg update

svn path=/nixpkgs/trunk/; revision=18894
This commit is contained in:
Marc Weber
2009-12-11 13:58:23 +00:00
parent 1030a6bb68
commit 5319704f80
28 changed files with 210 additions and 562 deletions

View File

@@ -1,10 +1,13 @@
{cabal, sourceByName, mtl}:
{cabal, fetchurl, sourceFromHead, mtl}:
cabal.mkDerivation (self : {
pname = "get-options";
version = "x"; # ?
name = self.fname;
src = sourceByName "getOptions";
# REGION AUTO UPDATE: { name="getOptions"; type="darcs"; url = "http://repetae.net/john/repos/GetOptions"; }
src = sourceFromHead "getOptions-nrmtag1.tar.gz"
(fetchurl { url = "http://mawercer.de/~nix/repos/getOptions-nrmtag1.tar.gz"; sha256 = "0e884687b2c676a5b7e79826a2236991cb045f794c5fd625813529a2b30224cd"; });
# END
extraBuildInputs = [ mtl ];
meta = {
description = "Simple to use get option library";

View File

@@ -1,10 +1,13 @@
{cabal, syb, sourceByName}:
{cabal, fetchurl, syb, sourceFromHead}:
cabal.mkDerivation (self : {
pname = "ghc-syb";
version = "dev";
name = self.fname;
src = sourceByName "ghc_syb";
# REGION AUTO UPDATE: { name="ghc_syb"; type = "git"; url = "git://github.com/nominolo/ghc-syb.git"; groups="haskell scien"; }
src = sourceFromHead "ghc_syb-876b121e73f1b5ca4b17b0c6908b27ba7efb0374.tar.gz"
(fetchurl { url = "http://mawercer.de/~nix/repos/ghc_syb-876b121e73f1b5ca4b17b0c6908b27ba7efb0374.tar.gz"; sha256 = "bb5071ee8a6a6cd99634e0f146c921592e8c77b13d511cde0c91fedc406a0a07"; });
# END
extraBuildInputs = [syb];
meta = {
description = "Source code suggestions";