2010-05-12 15:17:19 +02:00
|
|
|
{stdenv, fetchurl, zlib, openssl}:
|
|
|
|
|
|
|
|
let
|
2010-11-02 14:24:04 +01:00
|
|
|
version = "20101101142335";
|
2010-05-12 15:17:19 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "fossil-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.fossil-scm.org/download/fossil-src-${version}.tar.gz";
|
2010-11-02 14:24:04 +01:00
|
|
|
sha256 = "129a2zf5zpq397nmmmk31k1yhkgvrssgrh9z4aaj6lh50s3ax0bh";
|
2010-05-12 15:17:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ zlib openssl ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
ensureDir $out/bin
|
|
|
|
INSTALLDIR=$out/bin make install
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Simple, high-reliability, distributed software configuration management.";
|
|
|
|
longDescription = ''
|
|
|
|
Fossil is a software configuration management system. Fossil is
|
|
|
|
software that is designed to control and track the development of a
|
|
|
|
software project and to record the history of the project. There are
|
|
|
|
many such systems in use today. Fossil strives to distinguish itself
|
|
|
|
from the others by being extremely simple to setup and operate.
|
|
|
|
'';
|
|
|
|
homepage = http://www.fossil-scm.org/;
|
|
|
|
license = "GPLv2";
|
|
|
|
maintainers = [ #Add your name here!
|
|
|
|
stdenv.lib.maintainers.z77z
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|