init
This commit is contained in:
4
com/github/default.nix
Normal file
4
com/github/default.nix
Normal file
@@ -0,0 +1,4 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
ksdme = import ./ksdme { inherit pkgs; };
|
||||
}
|
||||
4
com/github/ksdme/default.nix
Normal file
4
com/github/ksdme/default.nix
Normal file
@@ -0,0 +1,4 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
ut = pkgs.callPackage ./ut/package.nix { };
|
||||
}
|
||||
26
com/github/ksdme/ut/package.nix
Normal file
26
com/github/ksdme/ut/package.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "ut";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ksdme";
|
||||
repo = "ut";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-+dKDLBgmwhc9LnXTDgtqGxcFxgu4cdkauY6X5FpE3+8=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-jWSp0NzeXQu38fAaZ8eTqVN+uvpn6v5xgoi3N5SCQoc=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Rust based utilty toolbox for developers. Inspired from https://it-tools.tech";
|
||||
homepage = "https://github.com/ksdme/ut";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user