Skip to content

Commit

Permalink
Bump micro-kdl with the first stable release
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Oct 17, 2024
1 parent 8d4bda7 commit 8b0773c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@

packages = forAllSystems (system: {
cozette = homemade-packages.${system}.cozette;
micro-kdl = homemade-packages.${system}.micro-kdl;
});

apps = forAllSystems (
Expand Down
8 changes: 4 additions & 4 deletions pkgs/micro-kdl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
fetchFromGitHub,
}:

stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "micro-kdl";
version = "unstable-2024-08-15";
version = "0.1.0";

src = fetchFromGitHub {
owner = "kachick";
repo = "micro-kdl";
rev = "fa014198284ede791afc36ccec5d24c0c7201256";
hash = "sha256-wS1Ldrhn8dKTXdLM23glDdFrKxAex4aZJSxgYaHN/uA=";
rev = "v${version}";
hash = "sha256-vWI7VbcPM2mgNj32txf2tNKgEi+Bbj0+wEjQRz2uu1E=";
};

buildPhase = ''
Expand Down

0 comments on commit 8b0773c

Please sign in to comment.