2014-10-11 16:28:29 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2011-01-01 20:28:38 +00:00
|
|
|
|
2014-10-11 16:28:29 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ised-${version}";
|
|
|
|
version = "2.6.0";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/project/ised/${name}.tar.bz2";
|
2014-09-02 09:16:25 +00:00
|
|
|
sha256 = "0rf9brqkrad8f3czpfc1bxq9ybv3nxci9276wdxas033c82cqkjs";
|
2011-01-01 20:28:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A numeric sequence editor";
|
2014-10-11 16:28:29 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin ];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2011-01-01 20:28:38 +00:00
|
|
|
};
|
2014-10-11 16:28:29 +00:00
|
|
|
}
|