eureka-ideas: init at 1.8.1
This commit is contained in:
parent
c7b6b7ccdb
commit
eb70021803
35
pkgs/applications/misc/eureka-ideas/default.nix
Normal file
35
pkgs/applications/misc/eureka-ideas/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkg-config
|
||||||
|
, openssl
|
||||||
|
, stdenv
|
||||||
|
, Security
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "eureka-ideas";
|
||||||
|
version = "1.8.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "simeg";
|
||||||
|
repo = "eureka";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1qjf8nr7m9igy6h228gm9gnav6pi2rfarbd9bc5fchx4rqy59sp7";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-QujrFgliH8Mx1ES9KVl+O9UJP+7GDanQ7+z4QJuSOd0=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "CLI tool to input and store your ideas without leaving the terminal";
|
||||||
|
homepage = "https://github.com/simeg/eureka";
|
||||||
|
changelog = "https://github.com/simeg/eureka/blob/v${version}/CHANGELOG.md";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ figsoda ];
|
||||||
|
mainProgram = "eureka";
|
||||||
|
};
|
||||||
|
}
|
@ -29479,6 +29479,10 @@ with pkgs;
|
|||||||
|
|
||||||
eureka-editor = callPackage ../applications/misc/eureka-editor { };
|
eureka-editor = callPackage ../applications/misc/eureka-editor { };
|
||||||
|
|
||||||
|
eureka-ideas = callPackage ../applications/misc/eureka-ideas {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
extremetuxracer = callPackage ../games/extremetuxracer {
|
extremetuxracer = callPackage ../games/extremetuxracer {
|
||||||
libpng = libpng12;
|
libpng = libpng12;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user