forked from mirrors/nixpkgs
kdePackages.partitionManager: fix via update to Gentoo version
This commit is contained in:
parent
82a0df8bad
commit
e469bc503e
|
@ -1,16 +1,21 @@
|
|||
{ stdenv, fetchurl, cmake, gettext, parted, libuuid, qt4, kdelibs, kde_baseapps,
|
||||
automoc4, phonon, perl }:
|
||||
{ stdenv, fetchurl, pkgconfig, cmake, gettext, automoc4, perl
|
||||
, parted, libuuid, qt4, kdelibs, kde_baseapps, phonon, libatasmart
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "partitionmanager-1.0.0";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "partitionmanager-1.0.3_p20120804";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.kde-apps.org/CONTENT/content-files/89595-partitionmanager-1.0.0.tar.bz2;
|
||||
sha256 = "03ibn4vns7pa0ygkp2jh6zcdy106as5cc7p6rv1f5c15wxx0zsk1";
|
||||
#url = "mirror://sourceforge/partitionman/${name}.tar.bz2";
|
||||
# the upstream version is old and doesn't build
|
||||
url = "http://dev.gentoo.org/~kensington/distfiles/${name}.tar.bz2";
|
||||
sha256 = "1j6zpgj8xs98alzxvcibwch9yj8jsx0s7y864gbdx280jmj8c1np";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ cmake gettext parted libuuid qt4 kdelibs kde_baseapps automoc4 perl phonon ];
|
||||
buildInputs = [
|
||||
pkgconfig cmake gettext automoc4 perl
|
||||
parted libuuid qt4 kdelibs kde_baseapps phonon libatasmart
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
export VERBOSE=1
|
||||
|
|
Loading…
Reference in a new issue