summary refs log tree commit diff
path: root/pkgs/tools/misc/ised/default.nix
blob: 7d0963c2bb0fc87627a10164b7959cf537e8a5e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "ised-${version}";
  version = "2.6.0";
  src = fetchurl {
    url = "mirror://sourceforge/project/ised/${name}.tar.bz2";
    sha256 = "0rf9brqkrad8f3czpfc1bxq9ybv3nxci9276wdxas033c82cqkjs";
  };

  meta = {
    description = "A numeric sequence editor";
    maintainers = with stdenv.lib.maintainers; [ raskin ];
    platforms = with stdenv.lib.platforms; linux;
    license = stdenv.lib.licenses.gpl3Plus;
  };
}