Author: guibert
Date: Tue Feb 1 23:24:13 2011
New Revision: 25743
URL: https://svn.nixos.org/websvn/nix/?rev=25743&sc=1
Log:
new makeself: 2.1.5
Added:
nixpkgs/trunk/pkgs/applications/misc/makeself/
nixpkgs/trunk/pkgs/applications/misc/makeself/default.nix
Modified:
nixpkgs/trunk/pkgs/top-level/all-packages.nix
Added: nixpkgs/trunk/pkgs/applications/misc/makeself/default.nix
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/applications/misc/makeself/default.nix Tue Feb 1
23:24:13 2011 (r25743)
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+ name = "makeself-2.1.5";
+ src = fetchurl {
+ url = "http://megastep.org/makeself/makeself.run";
+ sha256 = "0khs19xpid4ng0igrjyz3vsi6a5xyixrrrhgdxpdhd2wnf5nc9w2";
+ };
+ unpackPhase = "sh ${src}";
+ installPhase = ''
+ cd ${name}
+ ensureDir $out/{bin,share/{${name},man/man1}}
+ mv makeself.lsm README $out/share/${name}
+ mv makeself.sh $out/bin/makeself
+ mv makeself.1 $out/share/man/man1/
+ mv makeself-header.sh $out/share/${name}
+ sed -e 's|HEADER=`dirname $0`/makeself-header.sh|HEADER=`dirname
$0`/../share/${name}/makeself-header.sh|' -i $out/bin/makeself
+ '';
+ meta = {
+ homepage = http://megastep.org/makeself;
+ description = "Utility to create self-extracting packages";
+ };
+}
Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix Tue Feb 1 12:11:05
2011 (r25742)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix Tue Feb 1 23:24:13
2011 (r25743)
@@ -6275,6 +6275,8 @@
qt = qt4;
};
+ makeself = callPackage ../applications/misc/makeself { };
+
matchbox = callPackage ../applications/window-managers/matchbox { };
meld = callPackage ../applications/version-management/meld {
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits