Skip to content
This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
/ microgram Public archive

Commit

Permalink
new package: mergex, an XML file merger
Browse files Browse the repository at this point in the history
  • Loading branch information
rickynils committed Apr 23, 2015
1 parent fb8a400 commit 12c504f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ in rec {
exec ${pkgs.perl}/bin/perl ${./memcached/memcached-tool} "$@"
'';

mergex = pkgs.callPackage ./mergex {};

myrapi = fns.staticHaskellCallPackage ./myrapi { inherit servant servantClient; };

mysql55 = pkgs.callPackage ./mysql/5.5.x.nix {};
Expand Down
16 changes: 16 additions & 0 deletions pkgs/mergex/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{ stdenv, fetchsvn }:

stdenv.mkDerivation {
name = "mergex";
src = fetchsvn {
url = "http://mergex.googlecode.com/svn/trunk";
sha256 = "0xn3ci91ch0a108vil1qm2w8l10l0v8iz2ybqic34dhyajy9wwrm";
};
buildPhase = ''
make all
'';
installPhase = ''
mkdir -p $out/bin
mv -v mergex $out/bin/
'';
}

0 comments on commit 12c504f

Please sign in to comment.