nixpkgs/pkgs/tools/misc/ised/default.nix

18 lines
473 B
Nix
Raw Normal View History

2014-10-11 16:28:29 +00:00
{ stdenv, fetchurl }:
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";
};
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;
};
2014-10-11 16:28:29 +00:00
}