18 lines
475 B
Nix
18 lines
475 B
Nix
|
{ stdenv, fetchurl }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "ised";
|
||
|
version = "2.7.1";
|
||
|
src = fetchurl {
|
||
|
url = "mirror://sourceforge/project/ised/${pname}-${version}.tar.bz2";
|
||
|
sha256 = "0fhha61whkkqranqdxg792g0f5kgp5m3m6z1iqcvjh2c34rczbmb";
|
||
|
};
|
||
|
|
||
|
meta = {
|
||
|
description = "A numeric sequence editor";
|
||
|
maintainers = with stdenv.lib.maintainers; [ raskin ];
|
||
|
platforms = with stdenv.lib.platforms; linux;
|
||
|
license = stdenv.lib.licenses.gpl3Plus;
|
||
|
};
|
||
|
}
|