fix eval after #11248
This commit is contained in:
@@ -2,17 +2,17 @@
|
||||
|
||||
let
|
||||
baseName = "soi";
|
||||
fileName = "Spheres%20of%20Influence";
|
||||
majorVersion = "0.1";
|
||||
minorVersion = "1";
|
||||
version = "${majorVersion}.${minorVersion}";
|
||||
name = "${baseName}-${version}";
|
||||
project = "${baseName}";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
inherit name;
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/${project}/${baseName}-${majorVersion}/${fileName}-${version}-Source.tar.gz";
|
||||
url = "mirror://sourceforge/project/${baseName}/${baseName}-${majorVersion}/Spheres%20of%20Influence-${version}-Source.tar.gz";
|
||||
inherit name;
|
||||
sha256 = "dfc59319d2962033709bb751c71728417888addc6c32cbec3da9679087732a81";
|
||||
};
|
||||
|
||||
@@ -22,13 +22,10 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A physics-based puzzle game";
|
||||
maintainers = with maintainers;
|
||||
[
|
||||
raskin
|
||||
];
|
||||
maintainers = with maintainers; [ raskin ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.free;
|
||||
broken = true;
|
||||
downloadPage = "http://sourceforge.net/projects/soi/files/";
|
||||
downloadPage = "http://sourceforge.net/projects/soi/files/";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user