diff --git a/pkgs/development/tools/database/liquibase/default.nix b/pkgs/development/tools/database/liquibase/default.nix new file mode 100644 index 00000000000..7d89555085d --- /dev/null +++ b/pkgs/development/tools/database/liquibase/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, jre, makeWrapper }: + +stdenv.mkDerivation rec { + name = "${pname}-${version}"; + pname = "liquibase"; + version = "3.4.2"; + + src = fetchurl { + url = "https://github.com/liquibase/liquibase/releases/download/${pname}-parent-${version}/${name}-bin.tar.gz"; + sha256 = "1kvxqjz8jmqpmb1clhp2asxmgfk6ynqjir8fldc321v9a5wnqby5"; + }; + + buildInputs = [ jre makeWrapper ]; + + unpackPhase = '' + tar xfz ${src} + ''; + + installPhase = '' + mkdir -p $out/{bin,lib,sdk} + mv ./* $out/ + wrapProgram $out/liquibase --prefix PATH ":" ${jre}/bin --set LIQUIBASE_HOME $out; + ln -s $out/liquibase $out/bin/liquibase + ''; + + meta = with stdenv.lib; { + description = "Version Control for your database"; + homepage = "http://www.liquibase.org/"; + license = licenses.asl20; + maintainers = with maintainers; [ nequissimus ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index de9b4470a4f..5e5e9267852 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4466,6 +4466,8 @@ in lessc = callPackage ../development/compilers/lessc { }; + liquibase = callPackage ../development/tools/database/liquibase { }; + llvm = llvmPackages.llvm; llvm_38 = llvmPackages_38.llvm;