mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
projectable: init at 1.2.0 (#240154)
https://github.com/dzfrias/projectable
This commit is contained in:
parent
0a5cb5c47e
commit
53f3125e6e
49
pkgs/applications/file-managers/projectable/default.nix
Normal file
49
pkgs/applications/file-managers/projectable/default.nix
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkg-config
|
||||||
|
, libgit2_1_5
|
||||||
|
, openssl
|
||||||
|
, zlib
|
||||||
|
, stdenv
|
||||||
|
, darwin
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "projectable";
|
||||||
|
version = "1.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dzfrias";
|
||||||
|
repo = "projectable";
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-mN8kqh17qGJWOwrdH9fCPApFQBbgCs6FaVg38SNJGP0=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-SQ117gFkqex3GFl7RnorSfPo7e0Eefg1l3L0Vyi/tpU=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libgit2_1_5
|
||||||
|
openssl
|
||||||
|
zlib
|
||||||
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
darwin.apple_sdk.frameworks.CoreServices
|
||||||
|
];
|
||||||
|
|
||||||
|
env = {
|
||||||
|
OPENSSL_NO_VENDOR = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A TUI file manager built for projects";
|
||||||
|
homepage = "https://github.com/dzfrias/projectable";
|
||||||
|
changelog = "https://github.com/dzfrias/projectable/releases/tag/${src.rev}";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ figsoda ];
|
||||||
|
mainProgram = "prj";
|
||||||
|
};
|
||||||
|
}
|
@ -11656,6 +11656,8 @@ with pkgs;
|
|||||||
|
|
||||||
profile-sync-daemon = callPackage ../tools/misc/profile-sync-daemon { };
|
profile-sync-daemon = callPackage ../tools/misc/profile-sync-daemon { };
|
||||||
|
|
||||||
|
projectable = callPackage ../applications/file-managers/projectable { };
|
||||||
|
|
||||||
projectlibre = callPackage ../applications/misc/projectlibre {
|
projectlibre = callPackage ../applications/misc/projectlibre {
|
||||||
jre = jre8;
|
jre = jre8;
|
||||||
jdk = jdk8;
|
jdk = jdk8;
|
||||||
|
Loading…
Reference in New Issue
Block a user