2013-04-14 20:54:59 +02:00
|
|
|
{ cabal, extensibleExceptions, filepath, github, hslogger, IfElse
|
|
|
|
, MissingH, mtl, network, prettyShow, text
|
2013-02-25 15:25:43 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "github-backup";
|
2013-04-14 20:54:59 +02:00
|
|
|
version = "1.20130414";
|
|
|
|
sha256 = "1s8s1kv4kj086kzq8iq28zyrlg65hrzg3563fw3dazfik73cmlcp";
|
2013-02-25 15:25:43 +01:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
extensibleExceptions filepath github hslogger IfElse MissingH mtl
|
2013-04-14 20:54:59 +02:00
|
|
|
network prettyShow text
|
2013-02-25 15:25:43 +01: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;
|
|
|
|
};
|
|
|
|
})
|