about summary refs log tree commit diff
path: root/pkgs/tools/misc/ised/default.nix
blob: ee07ccc23e1ee8664bd2b0c85c4ea9ebe41ef223 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, 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 = "Numeric sequence editor";
    maintainers = with lib.maintainers; [ raskin ];
    platforms = with lib.platforms; linux;
    license = lib.licenses.gpl3Plus;
    mainProgram = "ised";
  };
}