2013-10-10 10:50:46 +01:00
|
|
|
{ cabal, extensibleExceptions, filepath, git, github, hslogger
|
|
|
|
, IfElse, MissingH, mtl, network, prettyShow, text, unixCompat
|
2013-02-25 14:25:43 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "github-backup";
|
2013-12-09 12:03:18 +00:00
|
|
|
version = "1.20131203";
|
|
|
|
sha256 = "0156g7zbqsp58g8hniqsilyc79sam7plwhn3w56wbzf8m380mwba";
|
2013-02-25 14:25:43 +00:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
extensibleExceptions filepath github hslogger IfElse MissingH mtl
|
2013-10-10 10:50:46 +01:00
|
|
|
network prettyShow text unixCompat
|
2013-02-25 14:25:43 +00:00
|
|
|
];
|
2013-10-10 10:50:46 +01:00
|
|
|
buildTools = [ git ];
|
2013-02-25 14:25:43 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/joeyh/github-backup";
|
|
|
|
description = "backs up everything github knows about a repository, to the repository";
|
|
|
|
license = "GPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|