mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
23 lines
507 B
Nix
23 lines
507 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "ised";
|
|
version = "2.7.1";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/ised/ised-${finalAttrs.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";
|
|
};
|
|
})
|