2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-10-06 10:47:51 +01:00
|
|
|
, fetchurl
|
|
|
|
, unzip
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-03 13:06:02 +01:00
|
|
|
pname = "smos";
|
2020-10-06 10:47:51 +01:00
|
|
|
version = "0.1.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/NorfairKing/smos/releases/download/v${version}/smos-release.zip";
|
|
|
|
sha256 = "sha256:07yavk7xl92yjwwjdig90yq421n8ldv4fjfw7izd4hfpzw849a12";
|
|
|
|
};
|
|
|
|
|
2021-08-03 13:06:02 +01:00
|
|
|
dontInstall = true;
|
|
|
|
|
2020-10-06 10:47:51 +01:00
|
|
|
unpackCmd = "${unzip}/bin/unzip -d $out $curSrc";
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-06 10:47:51 +01:00
|
|
|
description = "A comprehensive self-management system";
|
2021-11-10 10:37:56 +00:00
|
|
|
homepage = "https://smos.online";
|
2020-10-06 10:47:51 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ norfair ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|