summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/cd-dvd/unetbootin
diff options
context:
space:
mode:
authorCillian de Roiste <cillian.deroiste@gmail.com>2011-10-31 00:25:55 +0000
committerCillian de Roiste <cillian.deroiste@gmail.com>2011-10-31 00:25:55 +0000
commite15db25ff3a8b96fdab929be4f3dde0d89d4d954 (patch)
treeb4a5132a1e85de2ff8829b46a69067e73914f945 /pkgs/tools/cd-dvd/unetbootin
parent652a24f21a2865976465fc3d44270993c90555c8 (diff)
Updating unetbootin to 563, the previous version was not working for me at all, it dropped me to a busybox shell
svn path=/nixpkgs/trunk/; revision=30139
Diffstat (limited to 'pkgs/tools/cd-dvd/unetbootin')
-rw-r--r--pkgs/tools/cd-dvd/unetbootin/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/cd-dvd/unetbootin/default.nix b/pkgs/tools/cd-dvd/unetbootin/default.nix
index ff5b260c9f35..20d5ae7715e5 100644
--- a/pkgs/tools/cd-dvd/unetbootin/default.nix
+++ b/pkgs/tools/cd-dvd/unetbootin/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, makeWrapper, qt4, utillinux, coreutils, which, p7zip, mtools, syslinux }:
-let version = "485"; in
+let version = "563"; in
stdenv.mkDerivation rec {
name = "unetbootin-${version}";
src = fetchurl {
url = "mirror://sourceforge/unetbootin/UNetbootin/${version}/unetbootin-source-${version}.tar.gz";
- sha256 = "1nyzy1wrql0l6zkmrd1l3qqvbdkv0534axdz6vy3cyksp157jxc8";
+ sha256 = "1j4ka6rjf5akhcdb4pbfdrka9zflhch97b5i42zk1cf8hd6wx939";
};
sourceRoot = ".";
@@ -43,13 +43,13 @@ stdenv.mkDerivation rec {
''
ensureDir $out/bin
cp unetbootin $out/bin
-
+
ensureDir $out/share/unetbootin
cp unetbootin_*.qm $out/share/unetbootin
ensureDir $out/share/applications
cp unetbootin.desktop $out/share/applications
-
+
wrapProgram $out/bin/unetbootin \
--prefix PATH : ${which}/bin:${p7zip}/bin:${mtools}/bin
'';